Skip to content

Commit

Permalink
Version 0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Dec 13, 2018
1 parent 32e1530 commit eef79f8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.17.1

- `or`, `or-join`, `not` and `not-jon` support in queries (#238, #50)

# 0.17.0

- Implement `clojure.data/diff` on `datascript/DB` (#281)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The intention with DataScript is to be a basic building block in client-side app
## Latest version [![Build Status](https://travis-ci.org/tonsky/datascript.svg?branch=master)](https://travis-ci.org/tonsky/datascript)

```clj
[datascript "0.17.0"]
[datascript "0.17.1"]
```

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

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

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

* Better error reporting
* Proper documentation
* Query clasues: `not` / `not-join` / `or` / `or-join`

## Differences from Datomic

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def version "0.17.0")
(def version "0.17.1")

(defproject datascript (str version (System/getenv "DATASCRIPT_CLASSIFIER"))
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"
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.17.0",
"version": "0.17.1",
"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.17.0
* Datascript v0.17.1
*
* Copyright 2014-2015 Nikita Prokopov
*
Expand Down

0 comments on commit eef79f8

Please sign in to comment.