From 6de6a50fadd4006e55f18c0b6997c9f687368f50 Mon Sep 17 00:00:00 2001 From: 0xCCF4 <0xCCF4-git-commit@lenzentech.de> Date: Thu, 18 Jul 2024 11:06:39 +0200 Subject: [PATCH] chore: release --- untrusted_value/CHANGELOG.md | 8 ++++++++ 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, 23 insertions(+), 5 deletions(-) diff --git a/untrusted_value/CHANGELOG.md b/untrusted_value/CHANGELOG.md index 3a96d6f..b492e0d 100644 --- a/untrusted_value/CHANGELOG.md +++ b/untrusted_value/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.3](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.2.2...untrusted_value-v0.2.3) - 2024-07-18 + +### Fixed +- *(test)* fixed failing doctest + +### Other +- all types are reexported in the untrsuted_value crate, to use derive macros just the main crate needs to be imported + ## [0.2.2](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.2.1...untrusted_value-v0.2.2) - 2024-07-18 ### Added diff --git a/untrusted_value/Cargo.toml b/untrusted_value/Cargo.toml index 02cd37e..58aadad 100644 --- a/untrusted_value/Cargo.toml +++ b/untrusted_value/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "untrusted_value" -version = "0.2.2" +version = "0.2.3" 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.2", optional = true, path = "../untrusted_value_derive"} -untrusted_value_derive_internals = { version = "0.2.2", path = "../untrusted_value_derive_internals"} +untrusted_value_derive = { version = "0.2.3", optional = true, path = "../untrusted_value_derive"} +untrusted_value_derive_internals = { version = "0.2.3", path = "../untrusted_value_derive_internals"} [features] allow_usage_without_sanitization = [] diff --git a/untrusted_value_derive/CHANGELOG.md b/untrusted_value_derive/CHANGELOG.md index 921079f..25f1d5e 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.2.3](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.2.2...untrusted_value_derive-v0.2.3) - 2024-07-18 + +### Other +- all types are reexported in the untrsuted_value crate, to use derive macros just the main crate needs to be imported + ## [0.2.2](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.2.1...untrusted_value_derive-v0.2.2) - 2024-07-18 ### Added diff --git a/untrusted_value_derive/Cargo.toml b/untrusted_value_derive/Cargo.toml index d0a0295..75d6679 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.2" +version = "0.2.3" 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 018d439..fc00fc5 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.2.3](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive_internals-v0.2.2...untrusted_value_derive_internals-v0.2.3) - 2024-07-18 + +### Other +- all types are reexported in the untrsuted_value crate, to use derive macros just the main crate needs to be imported + ## [0.2.2](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive_internals-v0.2.1...untrusted_value_derive_internals-v0.2.2) - 2024-07-18 ### Added diff --git a/untrusted_value_derive_internals/Cargo.toml b/untrusted_value_derive_internals/Cargo.toml index 16e07a6..be63cd2 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.2" +version = "0.2.3" edition = "2021" readme = "../README.md" keywords = ["security", "sanitization", "validation", "taint", "static-analyis"]