Skip to content

Commit 658390a

Browse files
committed
Version 1.6.2
1 parent 1b39bf2 commit 658390a

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.6.2
2+
3+
- Query: shortcircuit clause resolution when result is guaranteed to be empty #459 via @galdre
4+
15
# 1.6.1
26

37
- Fixed JS version bug caused by Conn rewrite

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.6.1"]
22+
[datascript "1.6.2"]
2323
```
2424
```clj
2525
;; deps.edn
26-
datascript/datascript {:mvn/version "1.6.1"}
26+
datascript/datascript {:mvn/version "1.6.2"}
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.6.1/datascript-1.6.1.min.js"></script>
185+
<script src="https://github.com/tonsky/datascript/releases/download/1.6.2/datascript-1.6.2.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.6.1")
1+
(def version "1.6.2")
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.6.1",
3+
"version": "1.6.2",
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.6.1
2+
* Datascript v1.6.2
33
*
44
* Copyright 2014-2021 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)