Skip to content

Commit f9d65e1

Browse files
committed
Version 1.2.1
1 parent c9f610b commit f9d65e1

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.2.1
2+
3+
- Bump persistent-sorted-set to 0.1.3, fixes `(d/conn-from-datoms (d/datoms @*conn :eavt) schema)` on empty database https://github.com/tonsky/persistent-sorted-set/issues/4
4+
15
# 1.2.0
26

37
- New namespace: `datascript.serialize`. Prepares database for fast to/from JSON serialization

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The intention with DataScript is to be a basic building block in client-side app
1818
## Latest version [![Build Status](https://travis-ci.org/tonsky/datascript.svg?branch=master)](https://travis-ci.org/tonsky/datascript)
1919

2020
```clj
21-
[datascript "1.2.0"]
21+
[datascript "1.2.1"]
2222
```
2323

2424
## Support us
@@ -164,7 +164,7 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
164164
DataScript can be used from any JS engine without additional dependencies:
165165

166166
```html
167-
<script src="https://github.com/tonsky/datascript/releases/download/1.2.0/datascript-1.2.0.min.js"></script>
167+
<script src="https://github.com/tonsky/datascript/releases/download/1.2.1/datascript-1.2.1.min.js"></script>
168168
```
169169

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

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def version "1.2.0")
1+
(def version "1.2.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"
@@ -9,7 +9,7 @@
99
:dependencies [
1010
[org.clojure/clojure "1.10.2" :scope "provided"]
1111
[org.clojure/clojurescript "1.10.520" :scope "provided"]
12-
[persistent-sorted-set "0.1.2"]
12+
[persistent-sorted-set "0.1.3"]
1313
]
1414

1515
:plugins [

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.2.0",
3+
"version": "1.2.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Datascript v1.2.0
2+
* Datascript v1.2.1
33
*
44
* Copyright 2014-2021 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)