Skip to content

Commit 3231644

Browse files
authored
0.2.0
1 parent 89a33fc commit 3231644

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ authors = ["the Deno authors"]
99
edition = "2021"
1010

1111
[workspace.dependencies]
12-
denokv_proto = { version = "0.2.1", path = "./proto" }
13-
denokv_sqlite = { version = "0.2.1", path = "./sqlite" }
14-
denokv_remote = { version = "0.2.2", path = "./remote" }
15-
denokv_timemachine = { version = "0.2.1", path = "./timemachine" }
12+
denokv_proto = { version = "0.3.0", path = "./proto" }
13+
denokv_sqlite = { version = "0.3.0", path = "./sqlite" }
14+
denokv_remote = { version = "0.3.0", path = "./remote" }
15+
denokv_timemachine = { version = "0.1.0", path = "./timemachine" }
1616

1717
anyhow = "1"
1818
async-trait = "0.1"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ backend.
1414
To run `denokv`, just run:
1515

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

2020
Then run your Deno program and specify the access token in the

denokv/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "denokv"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true

proto/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "denokv_proto"
33
description = "Fundamental types, traits, and protobuf models for denokv"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
edition.workspace = true
66
license.workspace = true
77
repository.workspace = true

remote/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "denokv_remote"
33
description = "Remote (KV Connect) backend for Deno KV"
4-
version = "0.2.3"
4+
version = "0.3.0"
55
edition.workspace = true
66
license.workspace = true
77
repository.workspace = true

sqlite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "denokv_sqlite"
33
description = "SQLite storage backend for Deno KV"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
edition.workspace = true
66
license.workspace = true
77
repository.workspace = true

timemachine/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "denokv_timemachine"
33
description = "Point-in-time recovery tool for Deno KV"
4-
version = "0.2.1"
4+
version = "0.1.0"
55
edition.workspace = true
66
license.workspace = true
77
repository.workspace = true

0 commit comments

Comments
 (0)