chore: prepare 1.0 release (#13)

* chore: prepare 1.0 release
This commit is contained in:
leone 2024-02-28 15:42:04 +01:00 committed by GitHub
parent b72566656a
commit 7034dcc851
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 27 additions and 17 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [1.0.0] - 2024-02-28
* Update the `ntex` dependency to 1.1
## [0.1.0] - 2020-10-05
* Initial release

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-cors"
version = "0.5.0"
version = "1.0.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Cross-origin resource sharing (CORS) for ntex applications."
readme = "README.md"

View file

@ -104,20 +104,15 @@ impl WebResponseError<DefaultError> for CorsError {
/// allowed).
///
/// `Default` is implemented for this enum and is `All`.
#[derive(Clone, Debug, Eq, PartialEq)]
#[derive(Default, Clone, Debug, Eq, PartialEq)]
pub enum AllOrSome<T> {
/// Everything is allowed. Usually equivalent to the "*" value.
#[default]
All,
/// Only some of `T` is allowed
Some(T),
}
impl<T> Default for AllOrSome<T> {
fn default() -> Self {
AllOrSome::All
}
}
impl<T> AllOrSome<T> {
/// Returns whether this is an `All` variant
pub fn is_all(&self) -> bool {