Skip to content

Commit

Permalink
Release 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jprochazk committed Jun 9, 2024
1 parent 296cdc7 commit 8ce3c2f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions garde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garde"
version = "0.18.0"
version = "0.19.0"
edition = "2021"
repository = "https://github.com/jprochazk/garde"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -36,7 +36,7 @@ pattern = ["regex"] # for backward compatibility with <0.14.0
js-sys = ["dep:js-sys"]

[dependencies]
garde_derive = { version = "0.18.0", path = "../garde_derive", optional = true, default-features = false }
garde_derive = { version = "0.19.0", path = "../garde_derive", optional = true, default-features = false }

smallvec = { version = "1.11.0", default-features = false }
compact_str = { version = "0.7.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion garde_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "garde_derive"
version = "0.18.0"
version = "0.19.0"
edition = "2021"
repository = "https://github.com/jprochazk/garde"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions integrations/axum_garde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum_garde"
version = "0.18.0"
version = "0.19.0"
edition = "2021"
repository = "https://github.com/jprochazk/garde"
license = "MIT OR Apache-2.0"
Expand All @@ -25,7 +25,7 @@ axum = { version = "0.7", default-features = false }
axum-extra = { version = "0.9", default-features = false, optional = true }
axum-yaml = { version = "0.4", default-features = false, optional = true }
axum-msgpack = { version = "0.4", default-features = false, optional = true }
garde = { version = "0.18.0", path = "../../garde", default-features = false }
garde = { version = "0.19.0", path = "../../garde", default-features = false }
thiserror = { version = "1.0", default-features = false }

[dev-dependencies]
Expand Down
11 changes: 10 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ test-rules:
test-axum-garde:
cargo test -p axum_garde --all-features

# Update the version of all crates.
version *args:
cargo ws version {{args}}

# Release a new version of the crate.
release: test
cargo ws publish --force '*'
# publish `garde_derive`
cargo publish -p garde_derive
# publish `garde`
cargo publish -p garde
# publish `axum_garde`
cargo publish -p axum_garde

0 comments on commit 8ce3c2f

Please sign in to comment.