From 8a106c07b4eb48f183762a80d2482ce24ff0188c Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Mon, 25 May 2020 16:45:34 +0900 Subject: [PATCH 1/2] Tweak codegen metadata --- actix-web-codegen/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/actix-web-codegen/Cargo.toml b/actix-web-codegen/Cargo.toml index 3b2cdad3b..60480a7a1 100644 --- a/actix-web-codegen/Cargo.toml +++ b/actix-web-codegen/Cargo.toml @@ -3,6 +3,9 @@ name = "actix-web-codegen" version = "0.2.2" description = "Actix web proc macros" readme = "README.md" +homepage = "https://actix.rs" +repository = "https://github.com/actix/actix-web" +documentation = "https://docs.rs/actix-web-codegen" authors = ["Nikolay Kim "] license = "MIT/Apache-2.0" edition = "2018" From 482f74e4095274701babb71557d36114f3a9fe04 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Mon, 25 May 2020 19:12:20 +0900 Subject: [PATCH 2/2] multipart: Bump up to 0.3.0-alpha.1 --- actix-multipart/CHANGES.md | 6 ++++-- actix-multipart/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/actix-multipart/CHANGES.md b/actix-multipart/CHANGES.md index e7bea62c0..df3cecf71 100644 --- a/actix-multipart/CHANGES.md +++ b/actix-multipart/CHANGES.md @@ -1,10 +1,12 @@ # Changes -## [Unreleased] - 2020-xx-xx +## [0.3.0-alpha.1] - 2020-05-25 + +* Update `actix-web` to 3.0.0-alpha.3 * Bump minimum supported Rust version to 1.40 -## [0.2.1] - 2020-01-xx +* Minimize `futures` dependencies * Remove the unused `time` dependency diff --git a/actix-multipart/Cargo.toml b/actix-multipart/Cargo.toml index e12c07bf1..c5f315d75 100644 --- a/actix-multipart/Cargo.toml +++ b/actix-multipart/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-multipart" -version = "0.2.0" +version = "0.3.0-alpha.1" authors = ["Nikolay Kim "] description = "Multipart support for actix web framework." readme = "README.md"