Skip to content

Commit

Permalink
Version 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Mar 6, 2021
1 parent 262f266 commit 596c6f2
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.6

- Ensure transitive property for hash value comparisons #274 #356 #386 #388 thx @filipesilva

# 1.0.5

- Fixed empty non-queried relation not affecting results #385
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 "1.0.5"]
[datascript "1.0.6"]
```

## Support us
Expand Down Expand Up @@ -162,7 +162,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/1.0.5/datascript-1.0.5.min.js"></script>
<script src="https://github.com/tonsky/datascript/releases/download/1.0.6/datascript-1.0.6.min.js"></script>
```

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

## License

Copyright © 2014–2020 Nikita Prokopov
Copyright © 2014–2021 Nikita Prokopov

Licensed under Eclipse Public License (see [LICENSE](LICENSE)).
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def version "1.0.5")
(def version "1.0.6")

(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": "1.0.5",
"version": "1.0.6",
"description": "Immutable in-memory triplestore with Datalog queries",
"homepage": "https://github.com/tonsky/datascript",
"author": "Nikita Prokopov (https://github.com/tonsky)",
Expand Down
4 changes: 2 additions & 2 deletions release-js/wrapper.prefix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Datascript v1.0.5
* Datascript v1.0.6
*
* Copyright 2014-2019 Nikita Prokopov
* Copyright 2014-2021 Nikita Prokopov
*
* Licensed under Eclipse Public License;
* you may not use this file except in compliance with the License.
Expand Down
5 changes: 5 additions & 0 deletions script/test_all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

lein test-clj
lein cljsbuild once advanced release
node test_node.js --all

0 comments on commit 596c6f2

Please sign in to comment.