Skip to content

Commit 596c6f2

Browse files
committed
Version 1.0.6
1 parent 262f266 commit 596c6f2

6 files changed

Lines changed: 16 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.6
2+
3+
- Ensure transitive property for hash value comparisons #274 #356 #386 #388 thx @filipesilva
4+
15
# 1.0.5
26

37
- Fixed empty non-queried relation not affecting results #385

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 "1.0.5"]
21+
[datascript "1.0.6"]
2222
```
2323

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

164164
```html
165-
<script src="https://github.com/tonsky/datascript/releases/download/1.0.5/datascript-1.0.5.min.js"></script>
165+
<script src="https://github.com/tonsky/datascript/releases/download/1.0.6/datascript-1.0.6.min.js"></script>
166166
```
167167

168168
or as a CommonJS module ([npm page](https://www.npmjs.org/package/datascript)):
@@ -271,6 +271,6 @@ Some of the features are omitted intentionally. Different apps have different ne
271271

272272
## License
273273

274-
Copyright © 2014–2020 Nikita Prokopov
274+
Copyright © 2014–2021 Nikita Prokopov
275275

276276
Licensed under Eclipse Public License (see [LICENSE](LICENSE)).

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def version "1.0.5")
1+
(def version "1.0.6")
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": "1.0.5",
3+
"version": "1.0.6",
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* Datascript v1.0.5
2+
* Datascript v1.0.6
33
*
4-
* Copyright 2014-2019 Nikita Prokopov
4+
* Copyright 2014-2021 Nikita Prokopov
55
*
66
* Licensed under Eclipse Public License;
77
* you may not use this file except in compliance with the License.

script/test_all.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
lein test-clj
4+
lein cljsbuild once advanced release
5+
node test_node.js --all

0 commit comments

Comments
 (0)