Skip to content

Commit

Permalink
Version v1.0.0-rc.2
Browse files Browse the repository at this point in the history
Changes:

  - `CubDB.put_and_delete_multi/3` to atomically put and delete entries
  - `CubDB.put_new/3` to put an entry only if the key does not exist yet
  - More efficient implementation of `CubDB.put_multi/2` and
    `CubDB.delete_multi/2`
  - `CubDB.get_multi/2` does not block writers
  • Loading branch information
lucaong committed Apr 19, 2020
1 parent 44ca346 commit 61da0fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ For more details, read the [API documentation](https://hexdocs.pm/cubdb/CubDB.ht

```elixir
def deps do
[{:cubdb, "~> 1.0.0-rc.1"}]
[{:cubdb, "~> 1.0.0-rc.2"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule CubDB.Mixfile do
def project do
[
app: :cubdb,
version: "1.0.0-rc.1",
version: "1.0.0-rc.2",
elixir: "~> 1.6",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand Down

0 comments on commit 61da0fd

Please sign in to comment.