Skip to content

Commit 35006e9

Browse files
committed
prepare actix-web-codegen release 4.2.0
1 parent 115701e commit 35006e9

6 files changed

Lines changed: 11 additions & 6 deletions

File tree

actix-web-codegen/CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased - 2022-xx-xx
44

5+
## 4.2.0 - 2023-02-26
6+
57
- Add support for Custom Methods with `#[route]` macro. [#2969]
68

79
[#2969]: https://github.com/actix/actix-web/pull/2969

actix-web-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-web-codegen"
3-
version = "4.1.0"
3+
version = "4.2.0"
44
description = "Routing and runtime macros for Actix Web"
55
homepage = "https://actix.rs"
66
repository = "https://github.com/actix/actix-web.git"

actix-web-codegen/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
> Routing and runtime macros for Actix Web.
44
55
[![crates.io](https://img.shields.io/crates/v/actix-web-codegen?label=latest)](https://crates.io/crates/actix-web-codegen)
6-
[![Documentation](https://docs.rs/actix-web-codegen/badge.svg?version=4.1.0)](https://docs.rs/actix-web-codegen/4.1.0)
6+
[![Documentation](https://docs.rs/actix-web-codegen/badge.svg?version=4.2.0)](https://docs.rs/actix-web-codegen/4.2.0)
77
![Version](https://img.shields.io/badge/rustc-1.59+-ab6000.svg)
88
![License](https://img.shields.io/crates/l/actix-web-codegen.svg)
99
<br />
10-
[![dependency status](https://deps.rs/crate/actix-web-codegen/4.1.0/status.svg)](https://deps.rs/crate/actix-web-codegen/4.1.0)
10+
[![dependency status](https://deps.rs/crate/actix-web-codegen/4.2.0/status.svg)](https://deps.rs/crate/actix-web-codegen/4.2.0)
1111
[![Download](https://img.shields.io/crates/d/actix-web-codegen.svg)](https://crates.io/crates/actix-web-codegen)
1212
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
1313

actix-web/CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased - 2022-xx-xx
44

5+
- Add support for custom methods with the `#[route]` macro. [#2969]
6+
7+
[#2969]: https://github.com/actix/actix-web/pull/2969
8+
59
## 4.3.0 - 2023-01-21
610

711
### Added
@@ -472,7 +476,7 @@
472476
- `cookie` upgrade addresses [`RUSTSEC-2020-0071`].
473477

474478
[#2555]: https://github.com/actix/actix-web/pull/2555
475-
[`RUSTSEC-2020-0071`]: https://rustsec.org/advisories/RUSTSEC-2020-0071.html
479+
[`rustsec-2020-0071`]: https://rustsec.org/advisories/RUSTSEC-2020-0071.html
476480

477481
## 4.0.0-beta.17 - 2021-12-29
478482

actix-web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ actix-tls = { version = "3", default-features = false, optional = true }
7070

7171
actix-http = { version = "3.3", features = ["http2", "ws"] }
7272
actix-router = "0.5"
73-
actix-web-codegen = { version = "4.1", optional = true }
73+
actix-web-codegen = { version = "4.2", optional = true }
7474

7575
ahash = "0.7"
7676
bytes = "1"

scripts/bump

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ sed -i.bak -E "s/^version ?= ?\"[^\"]+\"$/version = \"$NEW_VERSION\"/" "$CARGO_M
8282
sed '/Unreleased/ q' "$CHANGELOG_FILE" # up to unreleased heading
8383
echo # blank line
8484
echo "## $NEW_VERSION - $DATE" # new version heading
85-
echo # blank line
8685
cat "$CHANGE_CHUNK_FILE" # previously unreleased changes
8786
sed "/$CURRENT_VERSION/ q" "$CHANGELOG_FILE" | tail -n 1 # the previous version heading
8887
sed "1,/$CURRENT_VERSION/ d" "$CHANGELOG_FILE" # everything after previous version heading

0 commit comments

Comments
 (0)