Skip to content

Commit

Permalink
Version 0.4.28
Browse files Browse the repository at this point in the history
  • Loading branch information
huahaiy committed Mar 18, 2021
1 parent 5dd5baa commit c41d688
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Change Log

## WIP
## 0.4.28
### Added
- Datafy/nav for entity [Thanks @den1k]
- Some datom convenience functions, e.g. `datom-eav`, `datom-e`, etc.
Expand Down
16 changes: 8 additions & 8 deletions README.md
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.27" 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.28" 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.27"}}}
{datalevin/datalevin {:mvn/version "0.4.28"}}}
```

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

```Clojure
[datalevin "0.4.27"]
[datalevin "0.4.28"]
```

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

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

```console
Datalevin (version: 0.4.27)
Datalevin (version: 0.4.28)

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

Expand Down Expand Up @@ -438,7 +438,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.27
Version: 0.4.28

## License

Expand Down
4 changes: 2 additions & 2 deletions native/README.md
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.27/reflect-config.json)
reflect-config.json](https://github.com/juji-io/datalevin/releases/download/0.4.28/reflect-config.json)
into yours.
2. Download [Datalevin's C
source](https://github.com/juji-io/datalevin/releases/download/0.4.27/datalevin-c-source-0.4.27.zip),
source](https://github.com/juji-io/datalevin/releases/download/0.4.28/datalevin-c-source-0.4.28.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
@@ -1,4 +1,4 @@
(def version "0.4.27")
(def version "0.4.28")

(defproject datalevin-native version
:description "Datalevin GraalVM native image and command line tool"
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(def version "0.4.27")
(def version "0.4.28")

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

(def ^:private version "0.4.27")
(def ^:private version "0.4.28")

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

0 comments on commit c41d688

Please sign in to comment.