Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Jun 21, 2021
1 parent ae62fa6 commit c9f610b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WIP
# 1.2.0

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The intention with DataScript is to be a basic building block in client-side app
## Latest version [![Build Status](https://travis-ci.org/tonsky/datascript.svg?branch=master)](https://travis-ci.org/tonsky/datascript)

```clj
[datascript "1.1.0"]
[datascript "1.2.0"]
```

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

```html
<script src="https://github.com/tonsky/datascript/releases/download/1.1.0/datascript-1.1.0.min.js"></script>
<script src="https://github.com/tonsky/datascript/releases/download/1.2.0/datascript-1.2.0.min.js"></script>
```

or as a CommonJS module ([npm page](https://www.npmjs.org/package/datascript)):
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def version "1.1.0")
(def version "1.2.0")

(defproject datascript (str version (System/getenv "DATASCRIPT_CLASSIFIER"))
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"
Expand Down
2 changes: 1 addition & 1 deletion release-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datascript",
"version": "1.1.0",
"version": "1.2.0",
"description": "Immutable in-memory triplestore with Datalog queries",
"homepage": "https://github.com/tonsky/datascript",
"author": "Nikita Prokopov (https://github.com/tonsky)",
Expand Down
2 changes: 1 addition & 1 deletion release-js/wrapper.prefix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Datascript v1.1.0
* Datascript v1.2.0
*
* Copyright 2014-2021 Nikita Prokopov
*
Expand Down
3 changes: 2 additions & 1 deletion script/release.clj
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
(defn run-tests []
(println "\n\n[ Running tests ]\n")
(sh "lein" "test-clj")
(sh "lein" "cljsbuild" "once" "advanced" "release")
(sh "lein" "with-profile" "test" "cljsbuild" "once" "advanced")
(sh "lein" "cljsbuild" "once" "release")
(sh "node" "test_node.js" "--all"))

(defn make-commit []
Expand Down

0 comments on commit c9f610b

Please sign in to comment.