Skip to content

Commit

Permalink
Version 0.4.40
Browse files Browse the repository at this point in the history
  • Loading branch information
huahaiy committed Jul 15, 2021
1 parent 031a939 commit 08d9ae1
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 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.40
### Added
- Transactable entity [Thanks @den1k, #48]
- `clear` function to clear Datalog db
Expand Down
14 changes: 7 additions & 7 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.39" 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.40" 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.39"}}}
{datalevin/datalevin {:mvn/version "0.4.40"}}}
```

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

```Clojure
[datalevin "0.4.39"]
[datalevin "0.4.40"]
```

### 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.39/dtlv-0.4.39-ubuntu-latest-amd64.zip)
* [MacOS](https://github.com/juji-io/datalevin/releases/download/0.4.39/dtlv-0.4.39-macos-latest-amd64.zip)
* [Windows](https://github.com/juji-io/datalevin/releases/download/0.4.39/dtlv-0.4.39-windows-amd64.zip)
* [Linux](https://github.com/juji-io/datalevin/releases/download/0.4.40/dtlv-0.4.40-ubuntu-latest-amd64.zip)
* [MacOS](https://github.com/juji-io/datalevin/releases/download/0.4.40/dtlv-0.4.40-macos-latest-amd64.zip)
* [Windows](https://github.com/juji-io/datalevin/releases/download/0.4.40/dtlv-0.4.40-windows-amd64.zip)

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

```console
Datalevin (version: 0.4.39)
Datalevin (version: 0.4.40)

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

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.39/reflect-config.json)
reflect-config.json](https://github.com/juji-io/datalevin/releases/download/0.4.40/reflect-config.json)
into yours.
2. Download [Datalevin's C
source](https://github.com/juji-io/datalevin/releases/download/0.4.39/datalevin-c-source-0.4.39.zip),
source](https://github.com/juji-io/datalevin/releases/download/0.4.40/datalevin-c-source-0.4.40.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.39")
(def version "0.4.40")

(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.39")
(def version "0.4.40")

(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.39")
(def ^:private version "0.4.40")

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

0 comments on commit 08d9ae1

Please sign in to comment.