From c62b271d9abd41815a83072b87cfd32d73a793c9 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 6 Jan 2024 21:13:26 +0000 Subject: [PATCH] chore(actix-cors): prepare release 0.7.0 --- actix-cors/CHANGES.md | 2 ++ actix-cors/Cargo.toml | 4 ++-- actix-cors/README.md | 4 ++-- actix-web-httpauth/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/actix-cors/CHANGES.md b/actix-cors/CHANGES.md index dea152689..f950c315f 100644 --- a/actix-cors/CHANGES.md +++ b/actix-cors/CHANGES.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.7.0 + - `Cors` is now marked `#[must_use]`. - Default for `Cors::block_on_origin_mismatch` is now false. - Minimum supported Rust version (MSRV) is now 1.75. diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index 301f8f506..289893337 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-cors" -version = "0.6.5" +version = "0.7.0" authors = [ "Nikolay Kim ", "Rob Ede ", @@ -8,7 +8,7 @@ authors = [ description = "Cross-Origin Resource Sharing (CORS) controls for Actix Web" keywords = ["actix", "cors", "web", "security", "crossorigin"] homepage = "https://actix.rs" -repository = "https://github.com/actix/actix-extras.git" +repository = "https://github.com/actix/actix-extras/tree/master/actix-cors" license.workspace = true edition.workspace = true rust-version.workspace = true diff --git a/actix-cors/README.md b/actix-cors/README.md index ef40556cd..f10dbb6b0 100644 --- a/actix-cors/README.md +++ b/actix-cors/README.md @@ -3,11 +3,11 @@ [![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.5)](https://docs.rs/actix-cors/0.6.5) +[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.7.0)](https://docs.rs/actix-cors/0.7.0) ![Version](https://img.shields.io/badge/rustc-1.68+-ab6000.svg) ![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-cors.svg)
-[![Dependency Status](https://deps.rs/crate/actix-cors/0.6.5/status.svg)](https://deps.rs/crate/actix-cors/0.6.5) +[![Dependency Status](https://deps.rs/crate/actix-cors/0.7.0/status.svg)](https://deps.rs/crate/actix-cors/0.7.0) [![Download](https://img.shields.io/crates/d/actix-cors.svg)](https://crates.io/crates/actix-cors) [![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x) diff --git a/actix-web-httpauth/Cargo.toml b/actix-web-httpauth/Cargo.toml index f054cdbc8..d265efb5e 100644 --- a/actix-web-httpauth/Cargo.toml +++ b/actix-web-httpauth/Cargo.toml @@ -29,6 +29,6 @@ log = "0.4" pin-project-lite = "0.2.7" [dev-dependencies] -actix-cors = "0.6" +actix-cors = "0.7" actix-service = "2" actix-web = { version = "4.1", default-features = false, features = ["macros"] }