Skip to content

Commit 0fd30aa

Browse files
committed
Version 1.7.1
1 parent c536d5a commit 0fd30aa

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.7.1 - Jun 20, 2024
2+
3+
- Regression: :db.fn/call returning entity without :db/id #474 #475 via @DerGuteMoritz
4+
15
# 1.7.0 - Jun 19, 2024
26

37
- Stable sorting of sequences of various types #470

README.md

+3-3
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.7.0"]
22+
[datascript "1.7.1"]
2323
```
2424
```clj
2525
;; deps.edn
26-
datascript/datascript {:mvn/version "1.7.0"}
26+
datascript/datascript {:mvn/version "1.7.1"}
2727
```
2828

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

185185
```html
186-
<script src="https://github.com/tonsky/datascript/releases/download/1.7.0/datascript-1.7.0.min.js"></script>
186+
<script src="https://github.com/tonsky/datascript/releases/download/1.7.1/datascript-1.7.1.min.js"></script>
187187
```
188188

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

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def version "1.7.0")
1+
(def version "1.7.1")
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datascript",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Datascript v1.7.0
2+
* Datascript v1.7.1
33
*
44
* Copyright 2014-2021 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)