Skip to content

Commit

Permalink
Version 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Oct 21, 2015
1 parent 07c402b commit 8df5be2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.13.2

- Fixed issue #120 with binding of large collections

# 0.13.1

- Guard `conn?` will check that value is derefable instead of checking for `(instance? Atom)`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -62,7 +62,7 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
:dependencies [
[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "0.0-3291"]
[datascript "0.13.1"]
[datascript "0.13.2"]
]
```

Expand Down Expand Up @@ -144,7 +144,7 @@ _Note:_ DataScript 0.11.0 and later will only work with CLJS 0.0-3196 and later
DataScript can be used from any JS engine without additional dependencies:

```html
<script src="https://github.com/tonsky/datascript/releases/download/0.13.1/datascript-0.13.1.min.js"></script>
<script src="https://github.com/tonsky/datascript/releases/download/0.13.2/datascript-0.13.2.min.js"></script>
```

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.13.1"
(defproject datascript "0.13.2"
: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.13.1",
"version": "0.13.2",
"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.13.1
* Datascript v0.13.2
*
* Copyright 2014-2015 Nikita Prokopov
*
Expand Down

0 comments on commit 8df5be2

Please sign in to comment.