From 0d47e949542344dbf71df22528704e44afadff03 Mon Sep 17 00:00:00 2001 From: Tin Rabzelj Date: Fri, 23 Aug 2024 17:23:07 +0200 Subject: [PATCH] version bump --- Cargo.toml | 16 ++++++++-------- bomboni_common/Cargo.toml | 4 ++-- bomboni_core/Cargo.toml | 2 +- bomboni_fs/Cargo.toml | 2 +- bomboni_prost/Cargo.toml | 4 ++-- bomboni_proto/Cargo.toml | 8 ++++---- bomboni_request/Cargo.toml | 10 +++++----- bomboni_request_derive/Cargo.toml | 4 ++-- bomboni_template/Cargo.toml | 6 +++--- bomboni_wasm/Cargo.toml | 6 +++--- bomboni_wasm_core/Cargo.toml | 4 ++-- bomboni_wasm_derive/Cargo.toml | 6 +++--- 12 files changed, 36 insertions(+), 36 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5e06847..74f8bd1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Utility Library for Rust" repository = "https://github.com/tinrab/bomboni" @@ -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 } diff --git a/bomboni_common/Cargo.toml b/bomboni_common/Cargo.toml index b1f79de..2d2a5bb 100644 --- a/bomboni_common/Cargo.toml +++ b/bomboni_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_common" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Common things for Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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 } diff --git a/bomboni_core/Cargo.toml b/bomboni_core/Cargo.toml index 30d0fbf..0197a1f 100644 --- a/bomboni_core/Cargo.toml +++ b/bomboni_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_core" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Internal part of Bomboni library." repository = "https://github.com/tinrab/bomboni" diff --git a/bomboni_fs/Cargo.toml b/bomboni_fs/Cargo.toml index 36fb6d9..4b18471 100644 --- a/bomboni_fs/Cargo.toml +++ b/bomboni_fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_fs" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Utilites for working with the file system. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" diff --git a/bomboni_prost/Cargo.toml b/bomboni_prost/Cargo.toml index 5a48ded..809bc6b 100644 --- a/bomboni_prost/Cargo.toml +++ b/bomboni_prost/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_prost" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Utilities for working with prost. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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" diff --git a/bomboni_proto/Cargo.toml b/bomboni_proto/Cargo.toml index fc12370..253f504 100644 --- a/bomboni_proto/Cargo.toml +++ b/bomboni_proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_proto" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Utilities for working with Protobuf/gRPC. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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"] } @@ -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 } @@ -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" diff --git a/bomboni_request/Cargo.toml b/bomboni_request/Cargo.toml index 5e1b8f8..9027f31 100644 --- a/bomboni_request/Cargo.toml +++ b/bomboni_request/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_request" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Utilities for working with API requests. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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 } diff --git a/bomboni_request_derive/Cargo.toml b/bomboni_request_derive/Cargo.toml index f9fb6fa..bbce29e 100644 --- a/bomboni_request_derive/Cargo.toml +++ b/bomboni_request_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_request_derive" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Internal request derive macros for Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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" diff --git a/bomboni_template/Cargo.toml b/bomboni_template/Cargo.toml index f4b30ec..f8f81d2 100644 --- a/bomboni_template/Cargo.toml +++ b/bomboni_template/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_template" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Utilities for working Handlebars templates. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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" diff --git a/bomboni_wasm/Cargo.toml b/bomboni_wasm/Cargo.toml index 5a4e871..a94db18 100644 --- a/bomboni_wasm/Cargo.toml +++ b/bomboni_wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_wasm" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Utilities for working with WASM. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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" diff --git a/bomboni_wasm_core/Cargo.toml b/bomboni_wasm_core/Cargo.toml index 740d689..1187b9d 100644 --- a/bomboni_wasm_core/Cargo.toml +++ b/bomboni_wasm_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_wasm_core" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Internal WASM part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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" diff --git a/bomboni_wasm_derive/Cargo.toml b/bomboni_wasm_derive/Cargo.toml index b23d8bd..730259f 100644 --- a/bomboni_wasm_derive/Cargo.toml +++ b/bomboni_wasm_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_wasm_derive" -version = "0.1.58" +version = "0.1.59" authors = ["Tin Rabzelj "] description = "Internal WASM derive macros for Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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"