Skip to content

Commit

Permalink
Version 0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed May 24, 2015
1 parent 6d30234 commit 2030333
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.11.2

- Support reverse attribute refs in combination with wildcards (issue #80)
- `*.cljc` sources do not conflict with Clojure now. Code compiles under `[lein-cljsbuild "1.0.6"]`

# 0.11.1

- Return nil from entity when passed nil eid (issue #75)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
```clj
:dependencies [
[org.clojure/clojurescript "0.0-3211"]
[datascript "0.11.1"]
[datascript "0.11.2"]
]
```

_Note:_ DataScript 0.11.1 and later will only work with CLJS 0.0-3196 and later
_Note:_ DataScript 0.11.2 and later will only work with CLJS 0.0-3196 and later

```clj
(require '[datascript :as d])
Expand Down Expand Up @@ -121,7 +121,7 @@ _Note:_ DataScript 0.11.1 and later will only work with CLJS 0.0-3196 and later
DataScript can be used from any JS engine without additional dependencies:

```
<script src="https://github.com/tonsky/datascript/releases/download/0.11.1/datascript-0.11.1.min.js"></script>
<script src="https://github.com/tonsky/datascript/releases/download/0.11.2/datascript-0.11.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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject datascript "0.11.1"
(defproject datascript "0.11.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datascript",
"version": "0.11.1",
"version": "0.11.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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Datascript v0.11.1
* Datascript v0.11.2
*
* Copyright 2014-2015 Nikita Prokopov
*
Expand Down

0 comments on commit 2030333

Please sign in to comment.