Skip to content

Commit b0417a7

Browse files
committed
chore: Bump version to 0.0.4
1 parent e788cb1 commit b0417a7

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.4] - 2025-07-08
11+
1012
### Added
1113

1214
- Implement `std::error::Error` for `AcceptRejection`
@@ -28,7 +30,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2830

2931
Initial release!
3032

31-
[unreleased]: https://github.com/bahlo/axum-accept/compare/v0.0.3...HEAD
33+
[unreleased]: https://github.com/bahlo/axum-accept/compare/v0.0.4...HEAD
34+
[0.0.3]: https://github.com/bahlo/axum-accept/releases/tag/v0.0.4
3235
[0.0.3]: https://github.com/bahlo/axum-accept/releases/tag/v0.0.3
3336
[0.0.2]: https://github.com/bahlo/axum-accept/releases/tag/v0.0.2
3437
[0.0.1]: https://github.com/bahlo/axum-accept/releases/tag/v0.0.1

axum-accept-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum-accept-macros"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2024"
55
description = "Proc-macro for the axum-accept crate"
66
license = "MIT OR Apache-2.0"
@@ -14,6 +14,6 @@ proc-macro = true
1414
proc-macro2 = "1"
1515
quote = "1"
1616
syn = { version = "2", features = ["full"] }
17-
axum-accept-shared = { version = "0.0.3", path = "../axum-accept-shared" }
17+
axum-accept-shared = { version = "0.0.4", path = "../axum-accept-shared" }
1818
axum = { workspace = true }
1919
mediatype = { workspace = true }

axum-accept-shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum-accept-shared"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2024"
55
description = "Shared code for the axum-accept crate"
66
license = "MIT OR Apache-2.0"

axum-accept/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum-accept"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
authors = ["Arne Bahlo <[email protected]>"]
55
edition = "2024"
66
description = "Typed accept negotiation for axum."
@@ -11,8 +11,8 @@ readme = "../README.md"
1111
keywords = ["axum", "accept", "media-type"]
1212

1313
[dependencies]
14-
axum-accept-macros= { version = "0.0.3", path = "../axum-accept-macros" }
15-
axum-accept-shared = { version = "0.0.3", path = "../axum-accept-shared" }
14+
axum-accept-macros= { version = "0.0.4", path = "../axum-accept-macros" }
15+
axum-accept-shared = { version = "0.0.4", path = "../axum-accept-shared" }
1616

1717
[dev-dependencies]
1818
axum = { workspace = true, features = ["json"] }

0 commit comments

Comments
 (0)