Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbraun96 committed Nov 24, 2024
1 parent 71c9c15 commit 662fca4
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ exclude = [

[workspace.dependencies]
# workspace deps
citadel_sdk = { path = "./citadel_sdk", default-features = false, version = "0.10.1" }
citadel_wire = { path = "./citadel_wire", default-features = false, version = "0.10.1" }
citadel_user = { path = "./citadel_user", default-features = false, version = "0.10.1" }
citadel_crypt = { path = "./citadel_crypt", default-features = false, version = "0.10.1" }
citadel_pqcrypto = { path = "./citadel_pqcrypto", default-features = false, version = "0.10.1" }
citadel_proto = { path = "./citadel_proto", default-features = false, version = "0.10.1" }
citadel_logging = { path = "./citadel_logging", default-features = false, version = "0.10.1" }
citadel_io = { path = "./citadel_io", default-features = false, version = "0.8.0" }
citadel_types = { path = "./citadel_types", default-features = false, version = "0.10.1" }
netbeam = { path = "./netbeam", default-features = false, version = "0.10.1" }
firebase-rtdb = { path = "./firebase-rtdb", default-features = false, version = "0.10.1" }
async_ip = { path = "./async_ip", default-features = false, version = "0.10.1" }
citadel_sdk = { path = "./citadel_sdk", default-features = false, version = "0.11.0" }
citadel_wire = { path = "./citadel_wire", default-features = false, version = "0.11.0" }
citadel_user = { path = "./citadel_user", default-features = false, version = "0.11.0" }
citadel_crypt = { path = "./citadel_crypt", default-features = false, version = "0.11.0" }
citadel_pqcrypto = { path = "./citadel_pqcrypto", default-features = false, version = "0.10.2" }
citadel_proto = { path = "./citadel_proto", default-features = false, version = "0.11.0" }
citadel_logging = { path = "./citadel_logging", default-features = false, version = "0.10.2" }
citadel_io = { path = "./citadel_io", default-features = false, version = "0.11.0" }
citadel_types = { path = "./citadel_types", default-features = false, version = "0.10.2" }
netbeam = { path = "./netbeam", default-features = false, version = "0.11.0" }
firebase-rtdb = { path = "./firebase-rtdb", default-features = false, version = "0.10.2" }
async_ip = { path = "./async_ip", default-features = false, version = "0.10.2" }

# ordinary deps
generic-array = { version = "0.14.6" }
Expand Down
12 changes: 6 additions & 6 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -252,34 +252,34 @@ install_crate = { crate_name = "cargo-workspaces", binary = "cargo", test_arg =
[tasks.publish-bump-version-patch]
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
command = "cargo"
args = ["workspaces", "version", "minor"]
args = ["workspaces", "version", "-y", "minor"]

[tasks.publish-bump-version-minor]
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
command = "cargo"
args = ["workspaces", "version", "minor"]
args = ["workspaces", "version", "-y", "minor"]

[tasks.publish-bump-version-major]
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
command = "cargo"
args = ["workspaces", "version", "major"]
args = ["workspaces", "version", "-y", "major"]

[tasks.publish-patch]
command = "cargo"
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
args = ["workspaces", "publish", "-y", "--allow-dirty", "patch", "${@}"]
args = ["workspaces", "publish", "-y", "--allow-dirty", "--no-verify", "--publish-as-is", "--dry-run", "patch"]
dependencies = ["publish-install-deps", "publish-bump-version-patch"]

[tasks.publish-minor]
command = "cargo"
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
args = ["workspaces", "publish", "-y", "--allow-dirty", "minor", "${@}"]
args = ["workspaces", "publish", "-y", "--allow-dirty", "--no-verify", "--publish-as-is", "--dry-run", "minor"]
dependencies = ["publish-install-deps", "publish-bump-version-minor"]

[tasks.publish-major]
command = "cargo"
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
args = ["workspaces", "publish", "-y", "--allow-dirty", "major", "${@}"]
args = ["workspaces", "publish", "-y", "--allow-dirty", "--no-verify", "--publish-as-is", "--dry-run", "major"]
dependencies = ["publish-install-deps", "publish-bump-version-major"]

[tasks.check-docs]
Expand Down
2 changes: 1 addition & 1 deletion citadel_crypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "citadel_crypt"
version = "0.10.2"
version = "0.11.0"
authors = ["Thomas Braun <[email protected]>"]
description = "Higher-level cryptographic library for the Citadel Protocol"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion citadel_io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "citadel_io"
version = "0.8.0"
version = "0.11.0"
authors = ["Thomas Braun <[email protected]>"]
edition = "2021"
description = "Underlying runtime for interfacing with I/O for std/wasm targets"
Expand Down
2 changes: 1 addition & 1 deletion citadel_proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "citadel_proto"
version = "0.10.2"
version = "0.11.0"
authors = ["Thomas Braun <[email protected]>"]
description = "Networking library for the Citadel Protocol"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion citadel_sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "citadel_sdk"
version = "0.10.2"
version = "0.11.0"
authors = ["Thomas Braun <[email protected]>"]
description = "High-level library to build applications on the Citadel Protocol"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion citadel_user/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "citadel_user"
version = "0.10.2"
version = "0.11.0"
authors = ["Thomas Braun <[email protected]>"]
description = "User backend library for the Citadel Protocol"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion citadel_wire/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "citadel_wire"
version = "0.10.2"
version = "0.11.0"
authors = ["Thomas Braun <[email protected]>"]
description = "NAT traversal and wire support for the Citadel Protocol"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion netbeam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netbeam"
version = "0.10.2"
version = "0.11.0"
description = "a pure-rust asynchronous network synchronization crate (using tokio) that recreates familiar asynchronous paradigms but in a network context"
authors = ["Thomas Braun <[email protected]>"]
edition = "2021"
Expand Down

0 comments on commit 662fca4

Please sign in to comment.