Skip to content

Commit

Permalink
prepare actix-web-codegen release 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Feb 26, 2023
1 parent 115701e commit 35006e9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions actix-web-codegen/CHANGES.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
4 changes: 2 additions & 2 deletions actix-web-codegen/README.md
Expand Up @@ -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)
<br />
[![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)

Expand Down
6 changes: 5 additions & 1 deletion actix-web/CHANGES.md
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion actix-web/Cargo.toml
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion scripts/bump
Expand Up @@ -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
Expand Down

0 comments on commit 35006e9

Please sign in to comment.