Skip to content

Commit

Permalink
Release axum and axum-extra (#1788)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpdrsn authored Feb 27, 2023
1 parent 279a8e2 commit 08bac36
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
11 changes: 7 additions & 4 deletions axum-extra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning].

# Unreleased

- None.

# 0.6.0 (24. February, 2022)

- **breaking:** Change casing of `ProtoBuf` to `Protobuf` ([#1595])
- **breaking:** `SpaRouter` has been removed. Use `ServeDir` and `ServeFile`
from `tower-http` instead:

Expand All @@ -27,12 +32,10 @@ and this project adheres to [Semantic Versioning].
);
```

See the [static-file-server-example] for more examples.

- **breaking:** Change casing of `ProtoBuf` to `Protobuf` ([#1595])
See the [static-file-server-example] for more examples ([#1784])

[#1783]: https://github.com/tokio-rs/axum/pull/1783
[#1595]: https://github.com/tokio-rs/axum/pull/1595
[#1784]: https://github.com/tokio-rs/axum/pull/1784
[static-file-server-example]: https://github.com/tokio-rs/axum/blob/main/examples/static-file-server/src/main.rs

# 0.5.0 (12. February, 2022)
Expand Down
4 changes: 2 additions & 2 deletions axum-extra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.5.0"
version = "0.6.0"

[features]
default = []
Expand All @@ -35,7 +35,7 @@ spa = ["tower-http/fs"]
typed-routing = ["dep:axum-macros", "dep:serde", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]

[dependencies]
axum = { path = "../axum", version = "0.6.0", default-features = false }
axum = { path = "../axum", version = "0.6.9", default-features = false }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion axum-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ syn = { version = "1.0", features = [

[dev-dependencies]
axum = { path = "../axum", version = "0.6.0", features = ["headers", "macros"] }
axum-extra = { path = "../axum-extra", version = "0.5.0", features = ["typed-routing", "cookie-private"] }
axum-extra = { path = "../axum-extra", version = "0.6.0", features = ["typed-routing", "cookie-private"] }
rustversion = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
8 changes: 7 additions & 1 deletion axum/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- **changed:** Update to tower-http 0.4. axum is still compatible with tower-http 0.3
- None.

# 0.6.9 (24. February, 2023)

- **changed:** Update to tower-http 0.4. axum is still compatible with tower-http 0.3 ([#1783])

[#1783]: https://github.com/tokio-rs/axum/pull/1783

# 0.6.8 (24. February, 2023)

Expand Down
2 changes: 1 addition & 1 deletion axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.6.8"
version = "0.6.9"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"
Expand Down

0 comments on commit 08bac36

Please sign in to comment.