From ddfc6c670995277c88ff2b914ebec840c0e501f9 Mon Sep 17 00:00:00 2001 From: 0xCCF4 <0xCCF4-git-commit@lenzentech.de> Date: Sat, 20 Jul 2024 12:56:02 +0200 Subject: [PATCH] chore: release --- untrusted_value/CHANGELOG.md | 11 +++++++++++ untrusted_value/Cargo.toml | 6 +++--- untrusted_value_derive/CHANGELOG.md | 5 +++++ untrusted_value_derive/Cargo.toml | 2 +- untrusted_value_derive_internals/CHANGELOG.md | 5 +++++ untrusted_value_derive_internals/Cargo.toml | 2 +- 6 files changed, 26 insertions(+), 5 deletions(-) diff --git a/untrusted_value/CHANGELOG.md b/untrusted_value/CHANGELOG.md index f5fbfba..3b86a99 100644 --- a/untrusted_value/CHANGELOG.md +++ b/untrusted_value/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.2.4...untrusted_value-v0.3.0) - 2024-07-20 + +### Added +- [**breaking**] improved sanitization interface + +### Fixed +- removed feature still #[cfg(...)] in code + +### Other +- fixed cargo clippy warning + ## [0.2.4](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.2.3...untrusted_value-v0.2.4) - 2024-07-18 ### Added diff --git a/untrusted_value/Cargo.toml b/untrusted_value/Cargo.toml index dee205b..ccc0fa8 100644 --- a/untrusted_value/Cargo.toml +++ b/untrusted_value/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "untrusted_value" -version = "0.2.4" +version = "0.3.0" edition = "2021" readme = "../README.md" keywords = ["security", "sanitization", "validation", "taint", "static-analyis"] @@ -12,8 +12,8 @@ description = """This crate aim to provide a type-safe way to handle and sanitiz like user input.""" [dependencies] -untrusted_value_derive = { version = "0.2.4", optional = true, path = "../untrusted_value_derive"} -untrusted_value_derive_internals = { version = "0.2.4", path = "../untrusted_value_derive_internals"} +untrusted_value_derive = { version = "0.3.0", optional = true, path = "../untrusted_value_derive"} +untrusted_value_derive_internals = { version = "0.3.0", path = "../untrusted_value_derive_internals"} [features] derive = [ "dep:untrusted_value_derive" ] diff --git a/untrusted_value_derive/CHANGELOG.md b/untrusted_value_derive/CHANGELOG.md index 7990446..3790d7f 100644 --- a/untrusted_value_derive/CHANGELOG.md +++ b/untrusted_value_derive/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.2.4...untrusted_value_derive-v0.3.0) - 2024-07-20 + +### Added +- [**breaking**] improved sanitization interface + ## [0.2.4](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.2.3...untrusted_value_derive-v0.2.4) - 2024-07-18 ### Added diff --git a/untrusted_value_derive/Cargo.toml b/untrusted_value_derive/Cargo.toml index 72b458c..3edaeba 100644 --- a/untrusted_value_derive/Cargo.toml +++ b/untrusted_value_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "untrusted_value_derive" -version = "0.2.4" +version = "0.3.0" edition = "2021" readme = "../README.md" keywords = ["security", "sanitization", "validation", "taint", "static-analyis"] diff --git a/untrusted_value_derive_internals/CHANGELOG.md b/untrusted_value_derive_internals/CHANGELOG.md index 7466b44..c08acdf 100644 --- a/untrusted_value_derive_internals/CHANGELOG.md +++ b/untrusted_value_derive_internals/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive_internals-v0.2.4...untrusted_value_derive_internals-v0.3.0) - 2024-07-20 + +### Added +- [**breaking**] improved sanitization interface + ## [0.2.4](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive_internals-v0.2.3...untrusted_value_derive_internals-v0.2.4) - 2024-07-18 ### Added diff --git a/untrusted_value_derive_internals/Cargo.toml b/untrusted_value_derive_internals/Cargo.toml index f9697c2..89eae7d 100644 --- a/untrusted_value_derive_internals/Cargo.toml +++ b/untrusted_value_derive_internals/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "untrusted_value_derive_internals" -version = "0.2.4" +version = "0.3.0" edition = "2021" readme = "../README.md" keywords = ["security", "sanitization", "validation", "taint", "static-analyis"]