Skip to content

Commit 9d46481

Browse files
committed
Version 1.6.0
1 parent 30379e6 commit 9d46481

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 1.6.0
2+
3+
- [ BREAKING ] Implement Conn as a single atom with extend-clj
4+
- Only breaking if you relied on getting listneres from Conn meta
5+
- Before: `@(:listeners (meta conn))`
6+
- After: `(:listeners @(:atom conn))`
7+
- prevent explosion of redundant tuples during rule solving #457, thx @RutledgePaulV
8+
19
# 1.5.4
210

311
- Fixed: `:xform` is not called on ref attributes #455

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ The intention with DataScript is to be a basic building block in client-side app
1919

2020
```clj
2121
;; lein
22-
[datascript "1.5.4"]
22+
[datascript "1.6.0"]
2323
```
2424
```clj
2525
;; deps.edn
26-
datascript/datascript {:mvn/version "1.5.4"}
26+
datascript/datascript {:mvn/version "1.6.0"}
2727
```
2828

2929
Important! If you are using shadow-cljs, add
@@ -182,7 +182,7 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
182182
DataScript can be used from any JS engine without additional dependencies:
183183

184184
```html
185-
<script src="https://github.com/tonsky/datascript/releases/download/1.5.4/datascript-1.5.4.min.js"></script>
185+
<script src="https://github.com/tonsky/datascript/releases/download/1.6.0/datascript-1.6.0.min.js"></script>
186186
```
187187

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

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def version "1.5.4")
1+
(def version "1.6.0")
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.5.4",
3+
"version": "1.6.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)",

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 v1.5.4
2+
* Datascript v1.6.0
33
*
44
* Copyright 2014-2021 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)