Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
tinrab committed Jan 19, 2024
1 parent 3e7d14d commit 3d88867
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 37 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utility Library for Rust"
repository = "https://github.com/tinrab/bomboni"
Expand Down Expand Up @@ -49,10 +49,10 @@ wasm = [
js = ["bomboni_common/js", "bomboni_proto/js", "bomboni_wasm/js"]

[dependencies]
bomboni_common = { path = "bomboni_common", version = "0.1.53" }
bomboni_common = { path = "bomboni_common", version = "0.1.54" }

bomboni_prost = { path = "bomboni_prost", version = "0.1.53", optional = true }
bomboni_proto = { path = "bomboni_proto", version = "0.1.53", optional = true }
bomboni_request = { path = "bomboni_request", version = "0.1.53", optional = true }
bomboni_template = { path = "bomboni_template", version = "0.1.53", optional = true }
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.53", optional = true }
bomboni_prost = { path = "bomboni_prost", version = "0.1.54", optional = true }
bomboni_proto = { path = "bomboni_proto", version = "0.1.54", optional = true }
bomboni_request = { path = "bomboni_request", version = "0.1.54", optional = true }
bomboni_template = { path = "bomboni_template", version = "0.1.54", optional = true }
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.54", optional = true }
4 changes: 2 additions & 2 deletions bomboni_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_common"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Common things for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down Expand Up @@ -37,7 +37,7 @@ sqlx = { version = "0.7", features = ["mysql"], optional = true }
chrono = { version = "0.4.31", optional = true }
js-sys = { version = "0.3.67", optional = true }
wasm-bindgen = { version = "0.2.90", optional = true }
bomboni_wasm_derive = { path = "../bomboni_wasm_derive", version = "0.1.53", optional = true }
bomboni_wasm_derive = { path = "../bomboni_wasm_derive", version = "0.1.54", optional = true }

[dev-dependencies]
serde_json = "1.0.111"
Expand Down
2 changes: 1 addition & 1 deletion bomboni_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_core"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Internal part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
4 changes: 2 additions & 2 deletions bomboni_prost/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_prost"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with prost. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -14,7 +14,7 @@ name = "bomboni_prost"
path = "src/lib.rs"

[dependencies]
bomboni_core = { path = "../bomboni_core", version = "0.1.53" }
bomboni_core = { path = "../bomboni_core", version = "0.1.54" }
prost = "0.12.3"
prost-types = "0.12.3"
proc-macro2 = "1.0.76"
Expand Down
8 changes: 4 additions & 4 deletions bomboni_proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_proto"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with Protobuf/gRPC. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -24,8 +24,8 @@ js = ["bomboni_common/js"]
[dependencies]
bomboni_common = { path = "../bomboni_common", features = [
"serde",
], version = "0.1.53" }
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.53", optional = true }
], version = "0.1.54" }
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.54", optional = true }
thiserror = "1.0.56"
time = { version = "0.3.31", features = ["serde", "formatting", "parsing"] }
prost = "0.12.3"
Expand All @@ -42,5 +42,5 @@ wasm-bindgen = { version = "0.2.90", optional = true }
serde_json = "1.0.111"

[build-dependencies]
bomboni_prost = { path = "../bomboni_prost", version = "0.1.53" }
bomboni_prost = { path = "../bomboni_prost", version = "0.1.54" }
prost-build = "0.12.3"
14 changes: 6 additions & 8 deletions bomboni_request/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_request"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with API requests. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -22,15 +22,14 @@ wasm = [
"bomboni_common/wasm",
"dep:wasm-bindgen",
"dep:js-sys",
"dep:serde",
"dep:getrandom",
]

[dependencies]
bomboni_common = { path = "../bomboni_common", version = "0.1.53" }
bomboni_proto = { path = "../bomboni_proto", version = "0.1.53" }
bomboni_request_derive = { path = "../bomboni_request_derive", version = "0.1.53" }
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.53", features = [
bomboni_common = { path = "../bomboni_common", version = "0.1.54" }
bomboni_proto = { path = "../bomboni_proto", version = "0.1.54" }
bomboni_request_derive = { path = "../bomboni_request_derive", version = "0.1.54" }
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.54", features = [
"derive",
], optional = true }
thiserror = "1.0.56"
Expand All @@ -44,13 +43,12 @@ blake2 = "0.10.6"
rsa = "0.9.6"
rand = "0.8.5"
regex = "1.10.2"
serde = { version = "1.0.195", features = ["derive"] }

serde = { version = "1.0.195", features = ["derive"], optional = true }
tonic = { version = "0.10.2", optional = true }
wasm-bindgen = { version = "0.2.90", optional = true }
js-sys = { version = "0.3.67", optional = true }
getrandom = { version = "0.2.12", features = ["js"], optional = true }

[dev-dependencies]
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
4 changes: 2 additions & 2 deletions bomboni_request_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_request_derive"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Internal request derive macros for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -15,7 +15,7 @@ path = "src/lib.rs"
proc-macro = true

[dependencies]
bomboni_core = { path = "../bomboni_core", version = "0.1.53" }
bomboni_core = { path = "../bomboni_core", version = "0.1.54" }
proc-macro2 = { version = "1.0.76", features = ["proc-macro"] }
syn = "2.0.48"
quote = "1.0.35"
Expand Down
6 changes: 3 additions & 3 deletions bomboni_template/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_template"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working Handlebars templates. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -17,8 +17,8 @@ path = "src/lib.rs"
testing = []

[dependencies]
bomboni_common = { path = "../bomboni_common", version = "0.1.53" }
bomboni_proto = { version = "0.1.53", path = "../bomboni_proto", features = [
bomboni_common = { path = "../bomboni_common", version = "0.1.54" }
bomboni_proto = { version = "0.1.54", path = "../bomboni_proto", features = [
"json",
] }
thiserror = "1.0.56"
Expand Down
6 changes: 3 additions & 3 deletions bomboni_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_wasm"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with WASM. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -23,9 +23,9 @@ js = ["bomboni_wasm_core/js"]
wasm-bindgen = "0.2.90"
serde = "1.0.195"
serde-wasm-bindgen = "0.6.3"
bomboni_wasm_core = { path = "../bomboni_wasm_core", version = "0.1.53" }
bomboni_wasm_core = { path = "../bomboni_wasm_core", version = "0.1.54" }

bomboni_wasm_derive = { path = "../bomboni_wasm_derive", version = "0.1.53", optional = true }
bomboni_wasm_derive = { path = "../bomboni_wasm_derive", version = "0.1.54", optional = true }
console_error_panic_hook = { version = "0.1.7", optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions bomboni_wasm_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_wasm_core"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Internal WASM part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -17,7 +17,7 @@ path = "src/lib.rs"
js = []

[dependencies]
bomboni_core = { path = "../bomboni_core", version = "0.1.53" }
bomboni_core = { path = "../bomboni_core", version = "0.1.54" }
proc-macro2 = { version = "1.0.76", features = ["proc-macro"] }
syn = "2.0.48"
quote = "1.0.35"
Expand Down
6 changes: 3 additions & 3 deletions bomboni_wasm_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_wasm_derive"
version = "0.1.53"
version = "0.1.54"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Internal WASM derive macros for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -15,8 +15,8 @@ path = "src/lib.rs"
proc-macro = true

[dependencies]
bomboni_core = { path = "../bomboni_core", version = "0.1.53" }
bomboni_wasm_core = { path = "../bomboni_wasm_core", version = "0.1.53" }
bomboni_core = { path = "../bomboni_core", version = "0.1.54" }
bomboni_wasm_core = { path = "../bomboni_wasm_core", version = "0.1.54" }
proc-macro2 = { version = "1.0.76", features = ["proc-macro"] }
syn = "2.0.48"
quote = "1.0.35"
Expand Down
6 changes: 6 additions & 0 deletions develop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ function test() {

function publish() {
if [[ "$2" =~ ^(--actually-do-it)$ ]]; then
cargo publish -p bomboni_core --allow-dirty
cargo publish -p bomboni_wasm_core --allow-dirty
cargo publish -p bomboni_wasm_derive --allow-dirty
cargo publish -p bomboni_wasm --allow-dirty
cargo publish -p bomboni_common --allow-dirty
cargo publish -p bomboni_prost --allow-dirty
cargo publish -p bomboni_proto --allow-dirty
Expand All @@ -69,7 +72,10 @@ function publish() {
cargo publish -p bomboni_template --allow-dirty
cargo publish -p bomboni --allow-dirty
else
cargo publish -p bomboni_core --dry-run --allow-dirty
cargo publish -p bomboni_wasm_core --dry-run --allow-dirty
cargo publish -p bomboni_wasm_derive --dry-run --allow-dirty
cargo publish -p bomboni_wasm --dry-run --allow-dirty
cargo publish -p bomboni_common --dry-run --allow-dirty
cargo publish -p bomboni_prost --dry-run --allow-dirty
cargo publish -p bomboni_proto --dry-run --allow-dirty
Expand Down

0 comments on commit 3d88867

Please sign in to comment.