Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tinrab committed Aug 23, 2024
1 parent 6a4e71c commit 0d47e94
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 36 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni"
version = "0.1.58"
version = "0.1.59"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utility Library for Rust"
repository = "https://github.com/tinrab/bomboni"
Expand Down Expand Up @@ -51,11 +51,11 @@ fs = ["dep:bomboni_fs"]
postgres = ["bomboni_common/postgres", "bomboni_request/postgres"]

[dependencies]
bomboni_common = { path = "bomboni_common", version = "0.1.58" }
bomboni_common = { path = "bomboni_common", version = "0.1.59" }

bomboni_prost = { path = "bomboni_prost", version = "0.1.58", default-features = false, optional = true }
bomboni_proto = { path = "bomboni_proto", version = "0.1.58", default-features = false, optional = true }
bomboni_request = { path = "bomboni_request", version = "0.1.58", default-features = false, optional = true }
bomboni_template = { path = "bomboni_template", version = "0.1.58", default-features = false, optional = true }
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.58", default-features = false, optional = true }
bomboni_fs = { path = "bomboni_fs", version = "0.1.58", default-features = false, optional = true }
bomboni_prost = { path = "bomboni_prost", version = "0.1.59", default-features = false, optional = true }
bomboni_proto = { path = "bomboni_proto", version = "0.1.59", default-features = false, optional = true }
bomboni_request = { path = "bomboni_request", version = "0.1.59", default-features = false, optional = true }
bomboni_template = { path = "bomboni_template", version = "0.1.59", default-features = false, optional = true }
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.59", default-features = false, optional = true }
bomboni_fs = { path = "bomboni_fs", version = "0.1.59", default-features = false, 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.58"
version = "0.1.59"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Common things for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -27,7 +27,7 @@ js = []
postgres = ["dep:postgres-types", "dep:bytes"]

[dependencies]
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.58", features = [
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.59", features = [
"derive",
], optional = true }

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.58"
version = "0.1.59"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Internal part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
2 changes: 1 addition & 1 deletion bomboni_fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_fs"
version = "0.1.58"
version = "0.1.59"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilites for working with the file system. 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.58"
version = "0.1.59"
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.58" }
bomboni_core = { path = "../bomboni_core", version = "0.1.59" }

prost = "0.13.1"
prost-types = "0.13.1"
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.58"
version = "0.1.59"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with Protobuf/gRPC. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down Expand Up @@ -30,7 +30,7 @@ js = ["bomboni_common/js"]
[dependencies]
bomboni_common = { path = "../bomboni_common", features = [
"serde",
], version = "0.1.58" }
], version = "0.1.59" }

thiserror = "1.0.63"
time = { version = "0.3.36", features = ["serde", "formatting", "parsing"] }
Expand All @@ -44,7 +44,7 @@ http = { version = "1.1.0", optional = true }
chrono = { version = "0.4.38", optional = true }

[target.'cfg(all(target_family = "wasm", not(any(target_os = "emscripten", target_os = "wasi"))))'.dependencies]
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.58", optional = true }
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.59", optional = true }

wasm-bindgen = { version = "0.2.92", optional = true }
js-sys = { version = "0.3.69", optional = true }
Expand All @@ -54,5 +54,5 @@ serde-wasm-bindgen = { version = "0.6.5", optional = true }
serde_json = "1.0.120"

[build-dependencies]
bomboni_prost = { path = "../bomboni_prost", version = "0.1.58" }
bomboni_prost = { path = "../bomboni_prost", version = "0.1.59" }
prost-build = "0.13.1"
10 changes: 5 additions & 5 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.58"
version = "0.1.59"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with API requests. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down Expand Up @@ -29,10 +29,10 @@ wasm = [
postgres = ["dep:postgres-types", "dep:bytes"]

[dependencies]
bomboni_common = { path = "../bomboni_common", version = "0.1.58" }
bomboni_proto = { path = "../bomboni_proto", version = "0.1.58" }
bomboni_request_derive = { path = "../bomboni_request_derive", version = "0.1.58" }
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.58", features = [
bomboni_common = { path = "../bomboni_common", version = "0.1.59" }
bomboni_proto = { path = "../bomboni_proto", version = "0.1.59" }
bomboni_request_derive = { path = "../bomboni_request_derive", version = "0.1.59" }
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.59", features = [
"derive",
], optional = true }

Expand Down
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.58"
version = "0.1.59"
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.58" }
bomboni_core = { path = "../bomboni_core", version = "0.1.59" }

proc-macro2 = { version = "1.0.86", features = ["proc-macro"] }
syn = "2.0.72"
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.58"
version = "0.1.59"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working Handlebars templates. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -18,8 +18,8 @@ default = ["testing"]
testing = []

[dependencies]
bomboni_common = { path = "../bomboni_common", version = "0.1.58" }
bomboni_proto = { version = "0.1.58", path = "../bomboni_proto" }
bomboni_common = { path = "../bomboni_common", version = "0.1.59" }
bomboni_proto = { version = "0.1.59", path = "../bomboni_proto" }

thiserror = "1.0.63"
handlebars = "6.0.0"
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.58"
version = "0.1.59"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with WASM. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -18,8 +18,8 @@ derive = ["dep:bomboni_wasm_derive"]
js = ["bomboni_wasm_core/js"]

[dependencies]
bomboni_wasm_core = { path = "../bomboni_wasm_core", version = "0.1.58" }
bomboni_wasm_derive = { path = "../bomboni_wasm_derive", version = "0.1.58", optional = true }
bomboni_wasm_core = { path = "../bomboni_wasm_core", version = "0.1.59" }
bomboni_wasm_derive = { path = "../bomboni_wasm_derive", version = "0.1.59", optional = true }

serde = "1.0.204"
wasm-bindgen = "0.2.92"
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.58"
version = "0.1.59"
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.58" }
bomboni_core = { path = "../bomboni_core", version = "0.1.59" }

proc-macro2 = { version = "1.0.86", features = ["proc-macro"] }
syn = "2.0.72"
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.58"
version = "0.1.59"
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.58" }
bomboni_wasm_core = { path = "../bomboni_wasm_core", version = "0.1.58" }
bomboni_core = { path = "../bomboni_core", version = "0.1.59" }
bomboni_wasm_core = { path = "../bomboni_wasm_core", version = "0.1.59" }

proc-macro2 = { version = "1.0.86", features = ["proc-macro"] }
syn = "2.0.72"
Expand Down

0 comments on commit 0d47e94

Please sign in to comment.