diff --git a/actix-web-codegen/CHANGES.md b/actix-web-codegen/CHANGES.md index 008e4c170..eb955afcf 100644 --- a/actix-web-codegen/CHANGES.md +++ b/actix-web-codegen/CHANGES.md @@ -2,6 +2,8 @@ ## Unreleased - 2022-xx-xx +## 4.2.0 - 2023-02-26 + - Add support for Custom Methods with `#[route]` macro. [#2969] [#2969]: https://github.com/actix/actix-web/pull/2969 diff --git a/actix-web-codegen/Cargo.toml b/actix-web-codegen/Cargo.toml index da5577445..51cb0dfef 100644 --- a/actix-web-codegen/Cargo.toml +++ b/actix-web-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-codegen" -version = "4.1.0" +version = "4.2.0" description = "Routing and runtime macros for Actix Web" homepage = "https://actix.rs" repository = "https://github.com/actix/actix-web.git" diff --git a/actix-web-codegen/README.md b/actix-web-codegen/README.md index b5eda863c..8dd3e986e 100644 --- a/actix-web-codegen/README.md +++ b/actix-web-codegen/README.md @@ -3,11 +3,11 @@ > Routing and runtime macros for Actix Web. [![crates.io](https://img.shields.io/crates/v/actix-web-codegen?label=latest)](https://crates.io/crates/actix-web-codegen) -[![Documentation](https://docs.rs/actix-web-codegen/badge.svg?version=4.1.0)](https://docs.rs/actix-web-codegen/4.1.0) +[![Documentation](https://docs.rs/actix-web-codegen/badge.svg?version=4.2.0)](https://docs.rs/actix-web-codegen/4.2.0) ![Version](https://img.shields.io/badge/rustc-1.59+-ab6000.svg) ![License](https://img.shields.io/crates/l/actix-web-codegen.svg)
-[![dependency status](https://deps.rs/crate/actix-web-codegen/4.1.0/status.svg)](https://deps.rs/crate/actix-web-codegen/4.1.0) +[![dependency status](https://deps.rs/crate/actix-web-codegen/4.2.0/status.svg)](https://deps.rs/crate/actix-web-codegen/4.2.0) [![Download](https://img.shields.io/crates/d/actix-web-codegen.svg)](https://crates.io/crates/actix-web-codegen) [![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x) diff --git a/actix-web/CHANGES.md b/actix-web/CHANGES.md index 2d4b2db51..813739520 100644 --- a/actix-web/CHANGES.md +++ b/actix-web/CHANGES.md @@ -2,6 +2,10 @@ ## Unreleased - 2022-xx-xx +- Add support for custom methods with the `#[route]` macro. [#2969] + +[#2969]: https://github.com/actix/actix-web/pull/2969 + ## 4.3.0 - 2023-01-21 ### Added @@ -472,7 +476,7 @@ - `cookie` upgrade addresses [`RUSTSEC-2020-0071`]. [#2555]: https://github.com/actix/actix-web/pull/2555 -[`RUSTSEC-2020-0071`]: https://rustsec.org/advisories/RUSTSEC-2020-0071.html +[`rustsec-2020-0071`]: https://rustsec.org/advisories/RUSTSEC-2020-0071.html ## 4.0.0-beta.17 - 2021-12-29 diff --git a/actix-web/Cargo.toml b/actix-web/Cargo.toml index 6cb86bbdd..c0bb430ad 100644 --- a/actix-web/Cargo.toml +++ b/actix-web/Cargo.toml @@ -70,7 +70,7 @@ actix-tls = { version = "3", default-features = false, optional = true } actix-http = { version = "3.3", features = ["http2", "ws"] } actix-router = "0.5" -actix-web-codegen = { version = "4.1", optional = true } +actix-web-codegen = { version = "4.2", optional = true } ahash = "0.7" bytes = "1" diff --git a/scripts/bump b/scripts/bump index 87fd50856..40d43d429 100755 --- a/scripts/bump +++ b/scripts/bump @@ -82,7 +82,6 @@ sed -i.bak -E "s/^version ?= ?\"[^\"]+\"$/version = \"$NEW_VERSION\"/" "$CARGO_M sed '/Unreleased/ q' "$CHANGELOG_FILE" # up to unreleased heading echo # blank line echo "## $NEW_VERSION - $DATE" # new version heading - echo # blank line cat "$CHANGE_CHUNK_FILE" # previously unreleased changes sed "/$CURRENT_VERSION/ q" "$CHANGELOG_FILE" | tail -n 1 # the previous version heading sed "1,/$CURRENT_VERSION/ d" "$CHANGELOG_FILE" # everything after previous version heading