Skip to content

Commit

Permalink
Releasing 0.1.0-dev.4
Browse files Browse the repository at this point in the history
Promoting circulate to 0.1.0 now that it's operating on wasm too.
  • Loading branch information
ecton committed Jun 23, 2021
1 parent a297096 commit 5685909
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion circulate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circulate"
version = "0.1.0-dev.1"
version = "0.1.0"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2018"
description = "Lightweight async PubSub framework."
Expand Down
4 changes: 2 additions & 2 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pliantdb-client"
version = "0.1.0-dev.3"
version = "0.1.0-dev.4"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2018"
description = "Client for accessing PliantDb servers."
Expand All @@ -20,7 +20,7 @@ keyvalue = ["pliantdb-core/keyvalue"]
test-util = []

[dependencies]
pliantdb-core = { path="../core", version="0.1.0-dev.3", default-features=false, features=["networking"] }
pliantdb-core = { path="../core", version="0.1.0-dev.4", default-features=false, features=["networking"] }
thiserror = "1"
url = "2.2"
flume = "0.10"
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pliantdb-core"
version = "0.1.0-dev.3"
version = "0.1.0-dev.4"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2018"
description = "Local storage backend for PliantDb."
Expand All @@ -21,8 +21,8 @@ keyvalue = ["futures"]
actionable-traits = []

[dependencies]
pliantdb-macros = { path="../macros" }
circulate = { path="../circulate", version="0.1.0-dev.1", optional=true }
pliantdb-macros = { path="../macros", version="0.1.0-dev.4" }
circulate = { path="../circulate", version="0.1.0", optional=true }
serde = { version="1", features=["derive"] }
serde_cbor = "0.11"
async-trait = "0.1"
Expand Down
6 changes: 3 additions & 3 deletions jobs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pliantdb-jobs"
version = "0.1.0-dev.3"
version = "0.1.0-dev.4"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2018"
description = "Aysnc jobs management for PliantDb."
Expand All @@ -12,9 +12,9 @@ readme = "../README.md"
homepage = "https://pliantdb.dev/"

[dependencies]
serde = { version = "1", features = ["derive"] }
serde = { version="1", features=["derive"] }
async-trait = "0.1"
flume = "0.10"
futures = "0.3"
tokio = { version = "1", features = ["full"] }
tokio = { version="1", features=["full"] }
anyhow = "1"
16 changes: 8 additions & 8 deletions local/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pliantdb-local"
version = "0.1.0-dev.3"
version = "0.1.0-dev.4"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2018"
description = "Local database storage for PliantDb."
Expand All @@ -23,23 +23,23 @@ keyvalue = ["pliantdb-core/keyvalue"]

[dependencies]
async-trait = "0.1"
pliantdb-core = { path = "../core", version = "0.1.0-dev.3" }
pliantdb-jobs = { path = "../jobs", version = "0.1.0-dev.3" }
pliantdb-core = { path="../core", version="0.1.0-dev.4" }
pliantdb-jobs = { path="../jobs", version="0.1.0-dev.4" }
sled = "0.34"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
tokio = { version="1", features=["full"] }
serde = { version="1", features=["derive"] }
serde_cbor = "0.11"
bincode = "1.3"
anyhow = "1"
flume = "0.10"
itertools = "0.10"
structopt = { version = "0.3", optional = true }
structopt = { version="0.3", optional=true }

[dev-dependencies]
pliantdb-core = { path = "../core", version = "0.1.0-dev.3", features = ["test-util"] }
pliantdb-core = { path="../core", version="0.1.0-dev.4", features=["test-util"] }
futures = "0.3"
criterion = { version = "0.3", features = ["async_tokio"] }
criterion = { version="0.3", features=["async_tokio"] }

[[bench]]
name = "basics"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pliantdb-macros"
version = "0.1.0-dev.3"
version = "0.1.0-dev.4"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2018"
description = "Macros for use in `PliantDb`"
Expand Down
12 changes: 6 additions & 6 deletions pliantdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pliantdb"
version = "0.1.0-dev.3"
version = "0.1.0-dev.4"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2018"
description = "A programmable, ACID-compliant, document-database inspired by CouchDB."
Expand Down Expand Up @@ -96,10 +96,10 @@ client-keyvalue = ["pliantdb-client/keyvalue", "pliantdb-core/keyvalue"]
local-keyvalue = ["pliantdb-local/keyvalue", "pliantdb-core/keyvalue"]

[dependencies]
pliantdb-core = { path="../core", version="0.1.0-dev.3", default-features=false }
pliantdb-local = { path="../local", version="0.1.0-dev.3", default-features=false, optional=true }
pliantdb-client = { path="../client", version="0.1.0-dev.3", default-features=false, optional=true }
pliantdb-server = { path="../server", version="0.1.0-dev.3", default-features=false, optional=true }
pliantdb-core = { path="../core", version="0.1.0-dev.4", default-features=false }
pliantdb-local = { path="../local", version="0.1.0-dev.4", default-features=false, optional=true }
pliantdb-client = { path="../client", version="0.1.0-dev.4", default-features=false, optional=true }
pliantdb-server = { path="../server", version="0.1.0-dev.4", default-features=false, optional=true }

tokio = { version="1", features=["full"], optional=true }
structopt = { version="0.3", optional=true }
Expand All @@ -109,7 +109,7 @@ anyhow = { version="1", optional=true }
tokio = { version="1", features=["full"] }
serde = { version="1", features=["derive"] }
anyhow = "1"
pliantdb-core = { path="../core", version="0.1.0-dev.3", default-features=false, features=["test-util"] }
pliantdb-core = { path="../core", version="0.1.0-dev.4", default-features=false, features=["test-util"] }
futures = "0.3"
rand = "0.8"
url = "2.2"
Expand Down
10 changes: 5 additions & 5 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pliantdb-server"
version = "0.1.0-dev.3"
version = "0.1.0-dev.4"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2018"
description = "Database server for PliantDb."
Expand All @@ -21,12 +21,12 @@ pubsub = ["pliantdb-core/pubsub", "pliantdb-local/pubsub"]
keyvalue = ["pliantdb-core/keyvalue", "pliantdb-local/keyvalue"]

[dependencies]
pliantdb-core = { path="../core", version="0.1.0-dev.3", default-features=false, features=[
pliantdb-core = { path="../core", version="0.1.0-dev.4", default-features=false, features=[
"networking",
"actionable-traits",
] }
pliantdb-local = { path="../local", version="0.1.0-dev.3", default-features=false, features=["internal-apis"] }
pliantdb-jobs = { path="../jobs", version="0.1.0-dev.3" }
pliantdb-local = { path="../local", version="0.1.0-dev.4", default-features=false, features=["internal-apis"] }
pliantdb-jobs = { path="../jobs", version="0.1.0-dev.4" }
serde = { version="1", features=["derive"] }
tokio = { version="1", features=["full"] }
thiserror = "1"
Expand All @@ -44,7 +44,7 @@ serde_cbor = "0.11"
fabruic = { version="0.0.1-dev.2", features=["dangerous"] }

[dev-dependencies]
pliantdb-core = { path="../core", version="0.1.0-dev.3", default-features=false, features=["test-util"] }
pliantdb-core = { path="../core", version="0.1.0-dev.4", default-features=false, features=["test-util"] }

[package.metadata.docs.rs]
all-features = true

0 comments on commit 5685909

Please sign in to comment.