Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
tinrab committed Oct 6, 2024
1 parent aa1a190 commit 8cafa2b
Show file tree
Hide file tree
Showing 25 changed files with 34 additions and 45 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
run: cargo test --workspace --all-targets --all-features

- name: Test - no default features
run: cargo test --workspace --all-targets --no-default-features
run: cargo test --workspace --all-targets --no-default-features --features testing,request

- name: Test doc
run: cargo test --workspace --doc --all-features

- name: Test doc - no default features
run: cargo test --workspace --doc --no-default-features
run: cargo test --workspace --doc --no-default-features --features testing,request
38 changes: 19 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni"
version = "0.1.60"
version = "0.1.61"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utility Library for Rust"
repository = "https://github.com/tinrab/bomboni"
Expand Down Expand Up @@ -51,31 +51,31 @@ fs = ["dep:bomboni_fs"]
postgres = ["bomboni_common/postgres", "bomboni_request/postgres"]

[dependencies]
bomboni_common = { path = "bomboni_common", version = "0.1.60" }
bomboni_common = { path = "bomboni_common", version = "0.1.61" }

bomboni_prost = { path = "bomboni_prost", version = "0.1.60", default-features = false, optional = true }
bomboni_proto = { path = "bomboni_proto", version = "0.1.60", default-features = false, optional = true }
bomboni_request = { path = "bomboni_request", version = "0.1.60", default-features = false, optional = true, features = [
bomboni_prost = { path = "bomboni_prost", version = "0.1.61", default-features = false, optional = true }
bomboni_proto = { path = "bomboni_proto", version = "0.1.61", default-features = false, optional = true }
bomboni_request = { path = "bomboni_request", version = "0.1.61", default-features = false, optional = true, features = [
"root-crate",
] }
bomboni_template = { path = "bomboni_template", version = "0.1.60", default-features = false, optional = true }
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.60", default-features = false, optional = true, features = [
bomboni_template = { path = "bomboni_template", version = "0.1.61", default-features = false, optional = true }
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.61", default-features = false, optional = true, features = [
"root-crate",
] }
bomboni_fs = { path = "bomboni_fs", version = "0.1.60", default-features = false, optional = true }
bomboni_fs = { path = "bomboni_fs", version = "0.1.61", default-features = false, optional = true }

[workspace.dependencies]
bomboni_core = { path = "bomboni_core", version = "0.1.60" }
bomboni_common = { path = "bomboni_common", version = "0.1.60" }
bomboni_prost = { path = "bomboni_prost", version = "0.1.60" }
bomboni_proto = { path = "bomboni_proto", version = "0.1.60" }
bomboni_request = { path = "bomboni_request", version = "0.1.60" }
bomboni_request_derive = { path = "bomboni_request_derive", version = "0.1.60" }
bomboni_template = { path = "bomboni_template", version = "0.1.60" }
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.60" }
bomboni_wasm_core = { path = "bomboni_wasm_core", version = "0.1.60" }
bomboni_wasm_derive = { path = "bomboni_wasm_derive", version = "0.1.60" }
bomboni_fs = { path = "bomboni_fs", version = "0.1.60" }
bomboni_core = { path = "bomboni_core", version = "0.1.61" }
bomboni_common = { path = "bomboni_common", version = "0.1.61" }
bomboni_prost = { path = "bomboni_prost", version = "0.1.61" }
bomboni_proto = { path = "bomboni_proto", version = "0.1.61" }
bomboni_request = { path = "bomboni_request", version = "0.1.61" }
bomboni_request_derive = { path = "bomboni_request_derive", version = "0.1.61" }
bomboni_template = { path = "bomboni_template", version = "0.1.61" }
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.61" }
bomboni_wasm_core = { path = "bomboni_wasm_core", version = "0.1.61" }
bomboni_wasm_derive = { path = "bomboni_wasm_derive", version = "0.1.61" }
bomboni_fs = { path = "bomboni_fs", version = "0.1.61" }

thiserror = "1.0.64"
regex = "1.11.0"
Expand Down
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Common things for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
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.60"
version = "0.1.61"
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.60"
version = "0.1.61"
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
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with prost. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
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
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
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
1 change: 0 additions & 1 deletion bomboni_request/src/filter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,6 @@ impl Display for FilterComparator {
}
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use crate::testing::schema::{RequestItem, TaskItem, UserItem};
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/ordering/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ impl Display for OrderingDirection {
}
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use crate::ordering::OrderingDirection::{Ascending, Descending};
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/parse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ pub struct ParsedResource {
pub revision_create_time: Option<UtcDateTime>,
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use super::*;
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/query/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ impl<P: PageTokenBuilder> ListQueryBuilder<P> {
}
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use crate::{
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/query/page_token/aes256.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ impl Debug for Aes256PageTokenBuilder {
}
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use crate::testing::schema::UserItem;
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/query/page_token/base64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ impl Debug for Base64PageTokenBuilder {
}
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use crate::testing::schema::UserItem;
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/query/page_token/rsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ impl Debug for RsaPageTokenBuilder {
}
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use std::sync::OnceLock;
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/query/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ impl<P: PageTokenBuilder> SearchQueryBuilder<P> {
}

#[cfg(test)]
#[cfg(feature = "testing")]
mod tests {
use crate::{
filter::error::FilterError,
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ impl Display for ValueType {
}
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use crate::testing::schema::RequestItem;
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/sql/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ impl<'a> SqlFilterBuilder<'a> {
}
}

#[cfg(feature = "testing")]
#[cfg(test)]
mod tests {
use std::collections::BTreeMap;
Expand Down
1 change: 0 additions & 1 deletion bomboni_request/src/sql/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ const _: () = {
};

#[cfg(test)]
#[cfg(feature = "testing")]
mod tests {
use crate::{
ordering::Ordering, query::page_token::FilterPageToken, testing::schema::RequestItem,
Expand Down
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Internal request derive macros for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working Handlebars templates. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with WASM. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Internal WASM part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
2 changes: 1 addition & 1 deletion 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.60"
version = "0.1.61"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Internal WASM derive macros for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
4 changes: 2 additions & 2 deletions develop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ function lint() {

function test() {
if [[ "$2" =~ ^(--no-default-features)$ ]]; then
cargo test --workspace --all-targets --no-default-features -- --nocapture
cargo test --workspace --doc --no-default-features -- --nocapture
cargo test --workspace --all-targets --no-default-features --features testing,request -- --nocapture
cargo test --workspace --doc --no-default-features --features testing -- --nocapture
else
cargo test --workspace --all-targets --all-features -- --nocapture
cargo test --workspace --doc --all-features -- --nocapture
Expand Down

0 comments on commit 8cafa2b

Please sign in to comment.