Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Nov 9, 2023
1 parent 89a33fc commit 3231644
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ authors = ["the Deno authors"]
edition = "2021"

[workspace.dependencies]
denokv_proto = { version = "0.2.1", path = "./proto" }
denokv_sqlite = { version = "0.2.1", path = "./sqlite" }
denokv_remote = { version = "0.2.2", path = "./remote" }
denokv_timemachine = { version = "0.2.1", path = "./timemachine" }
denokv_proto = { version = "0.3.0", path = "./proto" }
denokv_sqlite = { version = "0.3.0", path = "./sqlite" }
denokv_remote = { version = "0.3.0", path = "./remote" }
denokv_timemachine = { version = "0.1.0", path = "./timemachine" }

anyhow = "1"
async-trait = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ backend.
To run `denokv`, just run:

```sh
docker run -it --init -p 4512:4512 -v ./data:/data ghcr.io/denoland/denokv --sqlite-path /data/denokv.sqlite serve --access-token <random-token>
docker run -it --init -p 4512:4512 -v ./data:/data ghcr.io/denoland/denokv serve --sqlite-path /data/denokv.sqlite --access-token <random-token>
```

Then run your Deno program and specify the access token in the
Expand Down
2 changes: 1 addition & 1 deletion denokv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "denokv"
version = "0.1.0"
version = "0.2.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "denokv_proto"
description = "Fundamental types, traits, and protobuf models for denokv"
version = "0.2.1"
version = "0.3.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion remote/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "denokv_remote"
description = "Remote (KV Connect) backend for Deno KV"
version = "0.2.3"
version = "0.3.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "denokv_sqlite"
description = "SQLite storage backend for Deno KV"
version = "0.2.1"
version = "0.3.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion timemachine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "denokv_timemachine"
description = "Point-in-time recovery tool for Deno KV"
version = "0.2.1"
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down

0 comments on commit 3231644

Please sign in to comment.