Skip to content

Commit

Permalink
version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Dec 15, 2014
1 parent 9d1042e commit 5f6fa3b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
# WIP
# 0.7.0

- BTSet and its slices (returned by `datoms`/`seek-datoms` calls) now support fast reverse iteration via `reverse`.
- `(datascript/datom e a v & [tx added])` call for creating new datoms
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -33,9 +33,9 @@ Projects using DataScript:

```clj
:dependencies [
[org.clojure/clojurescript "0.0-2371"]
[org.clojure/clojurescript "0.0-2411"]
...
[datascript "0.6.0"]
[datascript "0.7.0"]
]

;; for advanced optimizations externs are needed
Expand Down Expand Up @@ -114,10 +114,10 @@ Projects using DataScript:
DataScript can be used from any JS engine without additional dependencies:

```
<script src="datascript-0.6.0.min.js"></script>
<script src="datascript-0.7.0.min.js"></script>
```

[Download datascript-0.6.0.min.js](https://github.com/tonsky/datascript/releases/download/0.6.0/datascript-0.6.0.min.js), 46k gzipped.
[Download datascript-0.7.0.min.js](https://github.com/tonsky/datascript/releases/download/0.7.0/datascript-0.7.0.min.js), 48k gzipped.

or as a CommonJS module ([npm page](https://www.npmjs.org/package/datascript)):

Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject datascript "0.6.0"
(defproject datascript "0.7.0"
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"
:license {:name "Eclipse"
:url "http://www.eclipse.org/legal/epl-v10.html"}
Expand Down
2 changes: 1 addition & 1 deletion release-js/package.json
@@ -1,6 +1,6 @@
{
"name": "datascript",
"version": "0.6.0",
"version": "0.7.0",
"description": "Immutable in-memory triplestore with Datalog queries",
"homepage": "https://github.com/tonsky/datascript",
"author": "Nikita Prokopov (https://github.com/tonsky)",
Expand Down
2 changes: 1 addition & 1 deletion release-js/wrapper.prefix
@@ -1,5 +1,5 @@
/**
* Datascript v0.6.0
* Datascript v0.7.0
*
* Copyright 2014 Nikita Prokopov
*
Expand Down

0 comments on commit 5f6fa3b

Please sign in to comment.