From 3f2a359a90277435097207babeb9f80aa16543d9 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Thu, 16 Mar 2023 14:31:49 +0100 Subject: [PATCH 1/3] Use edition 2021 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 81e32bb..f3f5d5d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "hoc" version = "0.32.0" authors = ["Valentin Brandl "] -edition = "2018" +edition = "2021" build = "build.rs" [lib] From b03e316c891b09480542717c6b04cff5f5fab654 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Thu, 16 Mar 2023 14:32:10 +0100 Subject: [PATCH 2/3] Bump version to 0.33.0 --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ceb2ef..25e9a0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.33.0] 2023-03-16 + * Updated [`futures`](https://github.com/rust-lang/futures-rs) from 0.3.26 to 0.3.27 ([#575]) * Updated [`serde`](https://github.com/serde-rs/serde) from 1.0.152 to 1.0.156 ([#576]) diff --git a/Cargo.lock b/Cargo.lock index f539fef..7e6720a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -905,7 +905,7 @@ dependencies = [ [[package]] name = "hoc" -version = "0.32.0" +version = "0.33.0" dependencies = [ "actix-rt", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index f3f5d5d..a259728 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hoc" -version = "0.32.0" +version = "0.33.0" authors = ["Valentin Brandl "] edition = "2021" build = "build.rs" From a93400ac140de5af44fe5dfd705e908828d7724c Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Thu, 16 Mar 2023 14:34:39 +0100 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25e9a0a..4cf7bab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,10 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Updated [`futures`](https://github.com/rust-lang/futures-rs) from 0.3.26 to 0.3.27 ([#575]) * Updated [`serde`](https://github.com/serde-rs/serde) from 1.0.152 to 1.0.156 ([#576]) +* Use edition 2021 ([#577]) [#575]: https://github.com/vbrandl/hoc/pull/575 [#576]: https://github.com/vbrandl/hoc/pull/576 +[#577]: https://github.com/vbrandl/hoc/pull/577 ## [0.32.0] 2023-03-06