Skip to content

Commit 81b4e81

Browse files
committed
Version 0.9.0
1 parent 3fe9608 commit 81b4e81

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WIP
1+
# 0.9.0
22

33
- Lookup refs can be inlined in query `:where` patterns (issue #53)
44
- Pull API (issue #37, pull request #51) by [David Thomas Hume](https://github.com/dthume)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
4747
```clj
4848
:dependencies [
4949
[org.clojure/clojurescript "0.0-2727"]
50-
[datascript "0.8.1"]
50+
[datascript "0.9.0"]
5151
]
5252
```
5353

@@ -119,10 +119,10 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
119119
DataScript can be used from any JS engine without additional dependencies:
120120

121121
```
122-
<script src="datascript-0.8.1.min.js"></script>
122+
<script src="datascript-0.9.0.min.js"></script>
123123
```
124124

125-
[Download datascript-0.8.1.min.js](https://github.com/tonsky/datascript/releases/download/0.8.1/datascript-0.8.1.min.js), 55k gzipped.
125+
[Download datascript-0.9.0.min.js](https://github.com/tonsky/datascript/releases/download/0.9.0/datascript-0.9.0.min.js), 59k gzipped.
126126

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

@@ -177,6 +177,7 @@ The following features are supported:
177177
* Filtered databases via `filter`
178178
* Lookup refs
179179
* Unique constraints, upsert
180+
* Pull API (thx [David Thomas Hume](https://github.com/dthume))
180181

181182
Query engine features:
182183

@@ -204,7 +205,6 @@ Expected soon:
204205

205206
* Better error reporting
206207
* Proper documentation
207-
* Pull API
208208
* `not`, `not-join`, `or` and `or-join` datalog clauses
209209

210210
## Differences from Datomic

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject datascript "0.8.1"
1+
(defproject datascript "0.9.0"
22
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"
33
:license {:name "Eclipse"
44
:url "http://www.eclipse.org/legal/epl-v10.html"}

release-js/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datascript",
3-
"version": "0.8.1",
3+
"version": "0.9.0",
44
"description": "Immutable in-memory triplestore with Datalog queries",
55
"homepage": "https://github.com/tonsky/datascript",
66
"author": "Nikita Prokopov (https://github.com/tonsky)",
@@ -16,6 +16,7 @@
1616
],
1717
"contributors": [
1818
"Nikita Prokopov (https://github.com/tonsky)",
19+
"David Thomas Hume (https://github.com/dthume)",
1920
"montyxcantsin (https://github.com/montyxcantsin)",
2021
"Gijs Stuurman (https://github.com/thegeez)",
2122
"Yevgeny Armor (https://github.com/izirku)",

release-js/wrapper.prefix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Datascript v0.8.1
2+
* Datascript v0.9.0
33
*
44
* Copyright 2014-2015 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)