Skip to content

Commit

Permalink
Version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Dec 16, 2023
1 parent 30379e6 commit 9d46481
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
# 1.6.0

- [ BREAKING ] Implement Conn as a single atom with extend-clj
- Only breaking if you relied on getting listneres from Conn meta
- Before: `@(:listeners (meta conn))`
- After: `(:listeners @(:atom conn))`
- prevent explosion of redundant tuples during rule solving #457, thx @RutledgePaulV

# 1.5.4

- Fixed: `:xform` is not called on ref attributes #455
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -19,11 +19,11 @@ The intention with DataScript is to be a basic building block in client-side app

```clj
;; lein
[datascript "1.5.4"]
[datascript "1.6.0"]
```
```clj
;; deps.edn
datascript/datascript {:mvn/version "1.5.4"}
datascript/datascript {:mvn/version "1.6.0"}
```

Important! If you are using shadow-cljs, add
Expand Down Expand Up @@ -182,7 +182,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.5.4/datascript-1.5.4.min.js"></script>
<script src="https://github.com/tonsky/datascript/releases/download/1.6.0/datascript-1.6.0.min.js"></script>
```

or as a CommonJS module ([npm page](https://www.npmjs.org/package/datascript)):
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(def version "1.5.4")
(def version "1.6.0")

(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
@@ -1,6 +1,6 @@
{
"name": "datascript",
"version": "1.5.4",
"version": "1.6.0",
"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
@@ -1,5 +1,5 @@
/**
* Datascript v1.5.4
* Datascript v1.6.0
*
* Copyright 2014-2021 Nikita Prokopov
*
Expand Down

0 comments on commit 9d46481

Please sign in to comment.