Skip to content

Commit 662fca4

Browse files
committed
Release 0.11.0
citadel_crypt@0.11.0 citadel_io@0.11.0 citadel_proto@0.11.0 citadel_sdk@0.11.0 citadel_user@0.11.0 citadel_wire@0.11.0 netbeam@0.11.0 Generated by cargo-workspaces
1 parent 71c9c15 commit 662fca4

9 files changed

Lines changed: 25 additions & 25 deletions

File tree

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ exclude = [
2222

2323
[workspace.dependencies]
2424
# workspace deps
25-
citadel_sdk = { path = "./citadel_sdk", default-features = false, version = "0.10.1" }
26-
citadel_wire = { path = "./citadel_wire", default-features = false, version = "0.10.1" }
27-
citadel_user = { path = "./citadel_user", default-features = false, version = "0.10.1" }
28-
citadel_crypt = { path = "./citadel_crypt", default-features = false, version = "0.10.1" }
29-
citadel_pqcrypto = { path = "./citadel_pqcrypto", default-features = false, version = "0.10.1" }
30-
citadel_proto = { path = "./citadel_proto", default-features = false, version = "0.10.1" }
31-
citadel_logging = { path = "./citadel_logging", default-features = false, version = "0.10.1" }
32-
citadel_io = { path = "./citadel_io", default-features = false, version = "0.8.0" }
33-
citadel_types = { path = "./citadel_types", default-features = false, version = "0.10.1" }
34-
netbeam = { path = "./netbeam", default-features = false, version = "0.10.1" }
35-
firebase-rtdb = { path = "./firebase-rtdb", default-features = false, version = "0.10.1" }
36-
async_ip = { path = "./async_ip", default-features = false, version = "0.10.1" }
25+
citadel_sdk = { path = "./citadel_sdk", default-features = false, version = "0.11.0" }
26+
citadel_wire = { path = "./citadel_wire", default-features = false, version = "0.11.0" }
27+
citadel_user = { path = "./citadel_user", default-features = false, version = "0.11.0" }
28+
citadel_crypt = { path = "./citadel_crypt", default-features = false, version = "0.11.0" }
29+
citadel_pqcrypto = { path = "./citadel_pqcrypto", default-features = false, version = "0.10.2" }
30+
citadel_proto = { path = "./citadel_proto", default-features = false, version = "0.11.0" }
31+
citadel_logging = { path = "./citadel_logging", default-features = false, version = "0.10.2" }
32+
citadel_io = { path = "./citadel_io", default-features = false, version = "0.11.0" }
33+
citadel_types = { path = "./citadel_types", default-features = false, version = "0.10.2" }
34+
netbeam = { path = "./netbeam", default-features = false, version = "0.11.0" }
35+
firebase-rtdb = { path = "./firebase-rtdb", default-features = false, version = "0.10.2" }
36+
async_ip = { path = "./async_ip", default-features = false, version = "0.10.2" }
3737

3838
# ordinary deps
3939
generic-array = { version = "0.14.6" }

Makefile.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -252,34 +252,34 @@ install_crate = { crate_name = "cargo-workspaces", binary = "cargo", test_arg =
252252
[tasks.publish-bump-version-patch]
253253
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
254254
command = "cargo"
255-
args = ["workspaces", "version", "minor"]
255+
args = ["workspaces", "version", "-y", "minor"]
256256

257257
[tasks.publish-bump-version-minor]
258258
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
259259
command = "cargo"
260-
args = ["workspaces", "version", "minor"]
260+
args = ["workspaces", "version", "-y", "minor"]
261261

262262
[tasks.publish-bump-version-major]
263263
condition = { env_set = [ "CARGO_REGISTRY_TOKEN" ] }
264264
command = "cargo"
265-
args = ["workspaces", "version", "major"]
265+
args = ["workspaces", "version", "-y", "major"]
266266

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

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

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

285285
[tasks.check-docs]

citadel_crypt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "citadel_crypt"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Thomas Braun <thomas.braun@avarok.net>"]
55
description = "Higher-level cryptographic library for the Citadel Protocol"
66
edition = "2021"

citadel_io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "citadel_io"
3-
version = "0.8.0"
3+
version = "0.11.0"
44
authors = ["Thomas Braun <thomas.braun@avarok.net>"]
55
edition = "2021"
66
description = "Underlying runtime for interfacing with I/O for std/wasm targets"

citadel_proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "citadel_proto"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Thomas Braun <thomas.braun@avarok.net>"]
55
description = "Networking library for the Citadel Protocol"
66
edition = "2021"

citadel_sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "citadel_sdk"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Thomas Braun <thomas.braun@avarok.net>"]
55
description = "High-level library to build applications on the Citadel Protocol"
66
edition = "2021"

citadel_user/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "citadel_user"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Thomas Braun <thomas.braun@avarok.net>"]
55
description = "User backend library for the Citadel Protocol"
66
edition = "2021"

citadel_wire/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "citadel_wire"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Thomas Braun <thomas.braun@avarok.net>"]
55
description = "NAT traversal and wire support for the Citadel Protocol"
66
edition = "2021"

netbeam/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "netbeam"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
description = "a pure-rust asynchronous network synchronization crate (using tokio) that recreates familiar asynchronous paradigms but in a network context"
55
authors = ["Thomas Braun <thomas.braun@avarok.net>"]
66
edition = "2021"

0 commit comments

Comments
 (0)