Skip to content

Commit 5740b91

Browse files
committed
Version 0.18.2
1 parent bef1aba commit 5740b91

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WIP
1+
# 0.18.2
22

33
- Fixed regression when transient indexes were mutated and iterated during single tx (#294).
44
- Bumped persistent-sorted-set to 0.1.2 (throw if transient set is mutated and iterated at the same time).

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 "0.18.1"]
21+
[datascript "0.18.2"]
2222
```
2323

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

161161
```html
162-
<script src="https://github.com/tonsky/datascript/releases/download/0.18.1/datascript-0.18.1.min.js"></script>
162+
<script src="https://github.com/tonsky/datascript/releases/download/0.18.2/datascript-0.18.2.min.js"></script>
163163
```
164164

165165
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 "0.18.1")
1+
(def version "0.18.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": "0.18.1",
3+
"version": "0.18.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 v0.18.1
2+
* Datascript v0.18.2
33
*
44
* Copyright 2014-2019 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)