From c534ef0f9878ca8fff1aa7096faa58c3fe0e417b Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 19 Nov 2020 00:52:49 +0000 Subject: [PATCH] fix derive_more version spec fixes #130 --- actix-cors/CHANGES.md | 4 ++++ actix-cors/Cargo.toml | 4 ++-- actix-cors/README.md | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/actix-cors/CHANGES.md b/actix-cors/CHANGES.md index e897f4025..58b2c7a0c 100644 --- a/actix-cors/CHANGES.md +++ b/actix-cors/CHANGES.md @@ -3,6 +3,10 @@ ## Unreleased - 2020-xx-xx +## 0.5.3 - 2020-11-19 +* Fix version spec for `derive_more` dependency. + + ## 0.5.2 - 2020-11-15 * Ensure `tinyvec` is using the correct features. * Bump `futures-util` minimum version to `0.3.7` to avoid `RUSTSEC-2020-0059`. diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index 3ee49b2e6..4daf8413e 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-cors" -version = "0.5.2" +version = "0.5.3" authors = [ "Nikolay Kim ", "Rob Ede ", @@ -20,7 +20,7 @@ path = "src/lib.rs" [dependencies] actix-web = { version = "3.0.0", default-features = false } -derive_more = "0.99.2" +derive_more = "0.99.5" futures-util = { version = "0.3.7", default-features = false } log = "0.4" once_cell = "1" diff --git a/actix-cors/README.md b/actix-cors/README.md index 3618d004b..447045927 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)](https://crates.io/crates/actix-cors) -[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.5.2)](https://docs.rs/actix-cors/0.5.2) +[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.5.3)](https://docs.rs/actix-cors/0.5.3) ![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors) -[![Dependency Status](https://deps.rs/crate/actix-cors/0.5.2/status.svg)](https://deps.rs/crate/actix-cors/0.5.2) +[![Dependency Status](https://deps.rs/crate/actix-cors/0.5.3/status.svg)](https://deps.rs/crate/actix-cors/0.5.3) [![Join the chat at https://gitter.im/actix/actix-web](https://badges.gitter.im/actix/actix-web.svg)](https://gitter.im/actix/actix-web?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ## Documentation & Resources