Skip to content

Commit

Permalink
Bump Khepri to version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbbell committed Feb 15, 2022
1 parent c17a0ab commit 1ee2f49
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ Using Rebar:

```erlang
%% In rebar.config
{deps, [{khepri, "0.1.1"}]}.
{deps, [{khepri, "0.2.0"}]}.
```

Using Erlang.mk:

```make
# In your Makefile
DEPS += khepri
dep_khepri = hex 0.1.1
dep_khepri = hex 0.2.0
```

Using Mix:
Expand All @@ -55,7 +55,7 @@ Using Mix:
# In mix.exs
defp deps do
[
{:khepri, "0.1.1"}
{:khepri, "0.2.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion doc/overview.edoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@author The RabbitMQ team <[email protected]>
@copyright 2021-2022 VMware, Inc. or its affiliates. All rights reserved.
@title The Khepri Database
@version Development branch
@version 0.2.0

@doc
Khepri is a tree-like replicated on-disk database library for Erlang and
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Khepri.MixProject do
[
app: :khepri,
description: "Tree-like replicated on-disk database library",
version: "0.1.1",
version: "0.2.0",
language: :erlang,
deps: deps()
]
Expand Down
2 changes: 1 addition & 1 deletion src/khepri.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
%% * mix.exs
%% * doc/overview.edoc
%% Pay attention to links in particular.
{vsn, "0.1.1"},
{vsn, "0.2.0"},
{registered, []},
{applications,
[kernel,
Expand Down

0 comments on commit 1ee2f49

Please sign in to comment.