Skip to content

Commit d708d3d

Browse files
committed
Bump Khepri to version 0.2.1
1 parent 9357963 commit d708d3d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ Using Rebar:
3838

3939
```erlang
4040
%% In rebar.config
41-
{deps, [{khepri, "0.2.0"}]}.
41+
{deps, [{khepri, "0.2.1"}]}.
4242
```
4343

4444
Using Erlang.mk:
4545

4646
```make
4747
# In your Makefile
4848
DEPS += khepri
49-
dep_khepri = hex 0.2.0
49+
dep_khepri = hex 0.2.1
5050
```
5151

5252
Using Mix:
@@ -55,7 +55,7 @@ Using Mix:
5555
# In mix.exs
5656
defp deps do
5757
[
58-
{:khepri, "0.2.0"}
58+
{:khepri, "0.2.1"}
5959
]
6060
end
6161
```

doc/overview.edoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@author The RabbitMQ team <[email protected]>
44
@copyright 2021-2022 VMware, Inc. or its affiliates. All rights reserved.
55
@title The Khepri Database
6-
@version Development branch
6+
@version 0.2.1
77

88
@doc
99
Khepri is a tree-like replicated on-disk database library for Erlang and

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule Khepri.MixProject do
55
[
66
app: :khepri,
77
description: "Tree-like replicated on-disk database library",
8-
version: "0.2.0",
8+
version: "0.2.1",
99
language: :erlang,
1010
deps: deps()
1111
]

src/khepri.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
%% * mix.exs
77
%% * doc/overview.edoc
88
%% Pay attention to links in particular.
9-
{vsn, "0.2.0"},
9+
{vsn, "0.2.1"},
1010
{registered, []},
1111
{applications,
1212
[kernel,

0 commit comments

Comments
 (0)