Skip to content

Commit

Permalink
Version 0.5.16
Browse files Browse the repository at this point in the history
  • Loading branch information
huahaiy committed Sep 22, 2021
1 parent cc6c82f commit 36218b7
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
@@ -1,10 +1,10 @@
# Change Log

## WIP
## 0.5.16
### Improved
- Do most of transaction data preparation remotely to reduce traffic
### Fixed
- Handle more cases of function serialization, fix #66
- Handle entity serialization, fix #66

## 0.5.15
### Changed
Expand Down
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -3,7 +3,7 @@
<p align="center"> 🧘 Simple, fast and versatile Datalog database for everyone 💽 </p>
<p align="center">
<a href="https://clojars.org/datalevin"><img src="https://img.shields.io/clojars/v/datalevin.svg?color=sucess" alt="datalevin on clojars"></img></a>
<a href="https://github.com/juji-io/datalevin/actions"><img src="https://github.com/juji-io/datalevin/actions/workflows/release.binaries.yml/badge.svg?branch=0.5.15" alt="datalevin linux/macos build status"></img></a>
<a href="https://github.com/juji-io/datalevin/actions"><img src="https://github.com/juji-io/datalevin/actions/workflows/release.binaries.yml/badge.svg?branch=0.5.16" alt="datalevin linux/macos build status"></img></a>
<a href="https://ci.appveyor.com/project/huahaiy/datalevin"><img src="https://ci.appveyor.com/api/projects/status/github/juji-io/datalevin?svg=true" alt="datalevin windows build status"></img></a>

</p>
Expand Down Expand Up @@ -94,14 +94,14 @@ If you use [Leiningen](https://leiningen.org/) build tool, add this to the
`:dependencies` section of your `project.clj` file:

```Clojure
[datalevin "0.5.15"]
[datalevin "0.5.16"]
```

If you use [Clojure CLI](https://clojure.org/guides/deps_and_cli) and
`deps.edn`, declare the dependency like so:

```Clojure
{:deps {datalevin/datalevin {:mvn/version "0.5.15"}
{:deps {datalevin/datalevin {:mvn/version "0.5.16"}
com.cognitect/transit-clj {:mvn/version "1.0.324"}}}
```

Expand Down Expand Up @@ -155,14 +155,14 @@ See [README on Docker hub](https://hub.docker.com/r/huahaiy/datalevin) for usage

Or download the executable binary from github:

* [Linux](https://github.com/juji-io/datalevin/releases/download/0.5.15/dtlv-0.5.15-ubuntu-latest-amd64.zip)
* [MacOS](https://github.com/juji-io/datalevin/releases/download/0.5.15/dtlv-0.5.15-macos-latest-amd64.zip)
* [Windows](https://github.com/juji-io/datalevin/releases/download/0.5.15/dtlv-0.5.15-windows-amd64.zip)
* [Linux](https://github.com/juji-io/datalevin/releases/download/0.5.16/dtlv-0.5.16-ubuntu-latest-amd64.zip)
* [MacOS](https://github.com/juji-io/datalevin/releases/download/0.5.16/dtlv-0.5.16-macos-latest-amd64.zip)
* [Windows](https://github.com/juji-io/datalevin/releases/download/0.5.16/dtlv-0.5.16-windows-amd64.zip)

Unzip, put it on your path, and execute `dtlv help`:

```console
Datalevin (version: 0.5.15)
Datalevin (version: 0.5.16)

Usage: dtlv [options] [command] [arguments]

Expand Down Expand Up @@ -199,7 +199,7 @@ Type 'dtlv help <command>' to read about a specific command.
Starting `dtlv` without any arguments goes into the console:

```console
Datalevin (version: 0.5.15)
Datalevin (version: 0.5.16)

Type (help) to see available functions. Clojure core functions are also available.
Type (exit) to exit.
Expand Down
4 changes: 2 additions & 2 deletions doc/dtlv.md
Expand Up @@ -8,7 +8,7 @@ server.

$ dtlv help

Datalevin (version: 0.5.15)
Datalevin (version: 0.5.16)

Usage: dtlv [options] [command] [arguments]

Expand Down Expand Up @@ -49,7 +49,7 @@ will initiate an interactive console (REPL).
```console
$ dtlv

Datalevin (version: 0.5.15)
Datalevin (version: 0.5.16)

Type (help) to see available functions. Clojure core functions are also available.
Type (exit) to exit.
Expand Down
2 changes: 1 addition & 1 deletion native/project.clj
@@ -1,4 +1,4 @@
(def version "0.5.15")
(def version "0.5.16")

(defproject org.clojars.huahaiy/datalevin-native version
:description "Datalevin GraalVM native image and command line tool"
Expand Down
2 changes: 1 addition & 1 deletion native/test-jar/deps.edn
Expand Up @@ -6,5 +6,5 @@
:main-class "test-jar.core" }}}
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojars.huahaiy/datalevin-native
{:local/root "./../target/datalevin-native-0.5.15.jar"}
{:local/root "./../target/datalevin-native-0.5.16.jar"}
}}
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(def version "0.5.15")
(def version "0.5.16")

(defproject datalevin version
:description "A simple, fast and versatile Datalog database"
Expand Down
2 changes: 1 addition & 1 deletion src/datalevin/main.clj
Expand Up @@ -25,7 +25,7 @@
(require 'datalevin.binding.graal)
(require 'datalevin.binding.java))

(def ^:private version "0.5.15")
(def ^:private version "0.5.16")

(def ^:private version-str
(str
Expand Down
4 changes: 2 additions & 2 deletions test-jar/deps.edn
@@ -1,4 +1,4 @@
{:deps
{datalevin/datalevin {:local/root "./../target/datalevin-0.5.15.jar"}}
;{datalevin/datalevin {:mvn/version "0.5.15"}}
{datalevin/datalevin {:local/root "./../target/datalevin-0.5.16.jar"}}
;{datalevin/datalevin {:mvn/version "0.5.16"}}
}
4 changes: 2 additions & 2 deletions test-jar/project.clj
@@ -1,9 +1,9 @@
(def version "0.5.15")
(def version "0.5.16")

(defproject test-jar version
:description "Test jar for Datalevin GraalVM native image compile"
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojars.huahaiy/datalevin-native "0.5.15"]]
[org.clojars.huahaiy/datalevin-native "0.5.16"]]
:jvm-opts ["--add-opens" "java.base/java.nio=ALL-UNNAMED"
"--add-opens" "java.base/sun.nio.ch=ALL-UNNAMED"
"--illegal-access=permit"
Expand Down

0 comments on commit 36218b7

Please sign in to comment.