From 76429602c6545bde0f9094665705f52334360e72 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 19 Oct 2020 23:09:42 +0100 Subject: [PATCH] prepare cors release 0.5.0 --- actix-cors/CHANGES.md | 5 ++++- actix-cors/Cargo.toml | 4 ++-- actix-cors/README.md | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/actix-cors/CHANGES.md b/actix-cors/CHANGES.md index 2bc59e40a..42712fe43 100644 --- a/actix-cors/CHANGES.md +++ b/actix-cors/CHANGES.md @@ -1,7 +1,10 @@ # Changes ## Unreleased - 2020-xx-xx -* Disallow `*` in `Cors::allowed_origin` by panicking. [#114]. + + +## 0.5.0 - 2020-10-19 +* Disallow `*` in `Cors::allowed_origin`. [#114]. * Hide `CorsMiddleware` from docs. [#118]. * `CorsFactory` is removed. [#119] * The `impl Default` constructor is now overly-restrictive. [#119] diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index d49a83de9..03d07e76e 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "actix-cors" -version = "0.4.1" +version = "0.5.0" authors = [ "Nikolay Kim ", - "Rob Ede " + "Rob Ede ", ] description = "Cross-Origin Resource Sharing (CORS) controls for Actix Web" readme = "README.md" diff --git a/actix-cors/README.md b/actix-cors/README.md index 5d3943845..64d544d69 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)](https://docs.rs/actix-cors) +[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.5.0)](https://docs.rs/actix-cors/0.5.0) ![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors) -[![Dependency Status](https://deps.rs/crate/actix-cors/0.4.1/status.svg)](https://deps.rs/crate/actix-cors/0.4.1) +[![Dependency Status](https://deps.rs/crate/actix-cors/0.5.0/status.svg)](https://deps.rs/crate/actix-cors/0.5.0) [![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