Skip to content

Commit eef79f8

Browse files
committed
Version 0.17.1
1 parent 32e1530 commit eef79f8

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.17.1
2+
3+
- `or`, `or-join`, `not` and `not-jon` support in queries (#238, #50)
4+
15
# 0.17.0
26

37
- Implement `clojure.data/diff` on `datascript/DB` (#281)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The intention with DataScript is to be a basic building block in client-side app
1818
## Latest version [![Build Status](https://travis-ci.org/tonsky/datascript.svg?branch=master)](https://travis-ci.org/tonsky/datascript)
1919

2020
```clj
21-
[datascript "0.17.0"]
21+
[datascript "0.17.1"]
2222
```
2323

2424
## Support us
@@ -159,7 +159,7 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
159159
DataScript can be used from any JS engine without additional dependencies:
160160

161161
```html
162-
<script src="https://github.com/tonsky/datascript/releases/download/0.17.0/datascript-0.17.0.min.js"></script>
162+
<script src="https://github.com/tonsky/datascript/releases/download/0.17.1/datascript-0.17.1.min.js"></script>
163163
```
164164

165165
or as a CommonJS module ([npm page](https://www.npmjs.org/package/datascript)):
@@ -227,6 +227,7 @@ Query engine features:
227227
* Tuple, collection, relation binding forms in `:in` clause
228228
* Query over multiple DB/collections
229229
* Predicates and user functions in query
230+
* Negation and disjunction
230231
* Rules, recursive rules
231232
* Aggregates
232233
* Find specifications
@@ -245,7 +246,6 @@ Expected soon:
245246

246247
* Better error reporting
247248
* Proper documentation
248-
* Query clasues: `not` / `not-join` / `or` / `or-join`
249249

250250
## Differences from Datomic
251251

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def version "0.17.0")
1+
(def version "0.17.1")
22

33
(defproject datascript (str version (System/getenv "DATASCRIPT_CLASSIFIER"))
44
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"

release-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datascript",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"description": "Immutable in-memory triplestore with Datalog queries",
55
"homepage": "https://github.com/tonsky/datascript",
66
"author": "Nikita Prokopov (https://github.com/tonsky)",

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.17.0
2+
* Datascript v0.17.1
33
*
44
* Copyright 2014-2015 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)