Skip to content

Commit 1661c52

Browse files
committed
Version 0.16.6
1 parent c75b503 commit 1661c52

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.16.6
2+
3+
- Add support for renamed DB functions :db/retractEntity and :db/cas (#265, PR #256, thx [Kenny Williams](https://github.com/kennyjwilli))
4+
15
# 0.16.5
26

37
- Provision AOT-compiled classes in datascript.jar (closes #241)

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.16.5"]
21+
[datascript "0.16.6"]
2222
```
2323

2424
## Resources
@@ -155,7 +155,7 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
155155
DataScript can be used from any JS engine without additional dependencies:
156156

157157
```html
158-
<script src="https://github.com/tonsky/datascript/releases/download/0.16.5/datascript-0.16.5.min.js"></script>
158+
<script src="https://github.com/tonsky/datascript/releases/download/0.16.6/datascript-0.16.6.min.js"></script>
159159
```
160160

161161
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-
(defproject datascript "0.16.5"
1+
(defproject datascript "0.16.6"
22
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"
33
:license {:name "Eclipse"
44
:url "http://www.eclipse.org/legal/epl-v10.html"}

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.16.5",
3+
"version": "0.16.6",
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.16.5
2+
* Datascript v0.16.6
33
*
44
* Copyright 2014-2015 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)