Skip to content

Commit

Permalink
Version 0.4.32
Browse files Browse the repository at this point in the history
  • Loading branch information
huahaiy committed May 16, 2021
1 parent 599978e commit d70e495
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## WIP
## 0.4.32
## Improved
- Remove GraalVM and dtlv specific deps from JVM library jar
- Update deps
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<p align="center"> 🧘 Simple, fast and durable 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.4.31" 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.4.32" 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 @@ -86,14 +86,14 @@ If you use [Clojure CLI](https://clojure.org/guides/deps_and_cli) and

```Clojure
{:deps
{datalevin/datalevin {:mvn/version "0.4.31"}}}
{datalevin/datalevin {:mvn/version "0.4.32"}}}
```

If you use [Leiningen](https://leiningen.org/) build tool, add this to the
`:dependencies` section of your `project.clj` file:

```Clojure
[datalevin "0.4.31"]
[datalevin "0.4.32"]
```

### Native command line tool
Expand Down Expand Up @@ -134,14 +134,14 @@ scoop install datalevin

Or download the binary from github:

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

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

```console
Datalevin (version: 0.4.31)
Datalevin (version: 0.4.32)

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

Expand Down Expand Up @@ -439,7 +439,7 @@ If you are interested in using the dialect of Datalog pioneered by Datomic®, he

* If you need a simple and fast durable store with a battle tested backend, give [Datalevin](https://github.com/juji-io/datalevin) a try.

Version: 0.4.31
Version: 0.4.32

## License

Expand Down
4 changes: 2 additions & 2 deletions native/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ application into a GraalVM native image, you need to integrate the following
steps in your native image build script:

1. Merge [Datalevin's
reflect-config.json](https://github.com/juji-io/datalevin/releases/download/0.4.31/reflect-config.json)
reflect-config.json](https://github.com/juji-io/datalevin/releases/download/0.4.32/reflect-config.json)
into yours.
2. Download [Datalevin's C
source](https://github.com/juji-io/datalevin/releases/download/0.4.31/datalevin-c-source-0.4.31.zip),
source](https://github.com/juji-io/datalevin/releases/download/0.4.32/datalevin-c-source-0.4.32.zip),
unzip, run [`make`](https://github.com/juji-io/datalevin/blob/25acc097b07ca48626b628849a2c937d755b980c/native/script/compile#L19) (or [`cmake`](https://github.com/juji-io/datalevin/blob/869f4099cf12eb4a21a7518630088d8e9f3bb324/native/script/compile.bat#L20) on Windows) in it, and add the path to your
[CLibraryPath](https://github.com/juji-io/datalevin/blob/25acc097b07ca48626b628849a2c937d755b980c/native/script/compile#L34).

Expand Down
2 changes: 1 addition & 1 deletion native/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def version "0.4.31")
(def version "0.4.32")

(defproject datalevin-native version
:description "Datalevin GraalVM native image and command line tool"
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 "0.4.31")
(def version "0.4.32")

(defproject datalevin version
:description "A simple, fast and durable Datalog database"
Expand Down
2 changes: 1 addition & 1 deletion src/datalevin/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
[datalevin.datom Datom])
(:gen-class))

(def ^:private version "0.4.31")
(def ^:private version "0.4.32")

(def ^:private version-str
(str
Expand Down

0 comments on commit d70e495

Please sign in to comment.