Skip to content

Commit 987cdcd

Browse files
committed
Version 1.5.3
1 parent 17c5dc5 commit 987cdcd

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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+
# 1.5.3
22

33
- Added: `d/reset-schema!`, `d/with-schema`
44
- JVM: Return `nil` from `d/restore-conn` if there is no db

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

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

178178
```html
179-
<script src="https://github.com/tonsky/datascript/releases/download/1.5.2/datascript-1.5.2.min.js"></script>
179+
<script src="https://github.com/tonsky/datascript/releases/download/1.5.3/datascript-1.5.3.min.js"></script>
180180
```
181181

182182
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.5.2")
1+
(def version "1.5.3")
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.5.2",
3+
"version": "1.5.3",
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.5.2
2+
* Datascript v1.5.3
33
*
44
* Copyright 2014-2021 Nikita Prokopov
55
*

src/datascript/storage.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
(def ^:private tail-addr
4343
1)
4444

45-
(def ^:private *max-addr
46-
(volatile! 0x10000000))
45+
(defonce ^:private *max-addr
46+
(volatile! 1000000))
4747

4848
(defn- gen-addr []
4949
(vswap! *max-addr inc))

0 commit comments

Comments
 (0)