From 3959c55c47c03e061c0baf46fbe8478f4692028e Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Fri, 25 Feb 2022 23:11:28 +0000 Subject: [PATCH] prepare actix-cors release 0.6.0 --- actix-cors/CHANGES.md | 3 +++ actix-cors/Cargo.toml | 2 +- actix-cors/README.md | 4 ++-- actix-web-httpauth/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/actix-cors/CHANGES.md b/actix-cors/CHANGES.md index f54b0b5df..0940959e5 100644 --- a/actix-cors/CHANGES.md +++ b/actix-cors/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 0.6.0 - 2022-02-25 - Update `actix-web` dependency to 4.0. - Ensure that preflight responses contain a `Vary` header. [#224] diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index 88cc377a8..f455e82a6 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-cors" -version = "0.6.0-beta.10" +version = "0.6.0" authors = [ "Nikolay Kim ", "Rob Ede ", diff --git a/actix-cors/README.md b/actix-cors/README.md index f37c95066..cf2617bb6 100644 --- a/actix-cors/README.md +++ b/actix-cors/README.md @@ -3,9 +3,9 @@ > Cross-origin resource sharing (CORS) for Actix Web. [![crates.io](https://img.shields.io/crates/v/actix-cors?label=latest)](https://crates.io/crates/actix-cors) -[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.6.0-beta.10)](https://docs.rs/actix-cors/0.6.0-beta.10) +[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.6.0)](https://docs.rs/actix-cors/0.6.0) ![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors) -[![Dependency Status](https://deps.rs/crate/actix-cors/0.6.0-beta.10/status.svg)](https://deps.rs/crate/actix-cors/0.6.0-beta.10) +[![Dependency Status](https://deps.rs/crate/actix-cors/0.6.0/status.svg)](https://deps.rs/crate/actix-cors/0.6.0) ## Documentation & Resources diff --git a/actix-web-httpauth/Cargo.toml b/actix-web-httpauth/Cargo.toml index 323346c5a..ef97ac709 100644 --- a/actix-web-httpauth/Cargo.toml +++ b/actix-web-httpauth/Cargo.toml @@ -28,5 +28,5 @@ futures-core = { version = "0.3.7", default-features = false } pin-project-lite = "0.2.7" [dev-dependencies] -actix-cors = "0.6.0-beta.10" +actix-cors = "0.6.0" actix-web = { version = "4", default_features = false, features = ["macros"] }