From 398a5abf704fea75d2c50ab9760372fffa5da09e Mon Sep 17 00:00:00 2001 From: 0xCCF4 <0xCCF4-git-commit@lenzentech.de> Date: Fri, 20 Jun 2025 13:58:19 +0200 Subject: [PATCH] chore: release v0.3.3 --- untrusted_value/CHANGELOG.md | 6 ++++++ untrusted_value/Cargo.toml | 4 ++-- untrusted_value_derive/CHANGELOG.md | 7 +++++++ untrusted_value_derive/Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/untrusted_value/CHANGELOG.md b/untrusted_value/CHANGELOG.md index 701e233..5f70fd0 100644 --- a/untrusted_value/CHANGELOG.md +++ b/untrusted_value/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.3](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.3.2...untrusted_value-v0.3.3) - 2025-06-20 + +### Other + +- updated the following local packages: untrusted_value_derive + ## [0.3.2](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.3.1...untrusted_value-v0.3.2) - 2025-04-04 ### Added diff --git a/untrusted_value/Cargo.toml b/untrusted_value/Cargo.toml index 4c8d318..3c86182 100644 --- a/untrusted_value/Cargo.toml +++ b/untrusted_value/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "untrusted_value" -version = "0.3.2" +version = "0.3.3" edition = "2021" readme = "../README.md" keywords = ["security", "sanitization", "validation", "taint", "static-analyis"] @@ -12,7 +12,7 @@ description = """This crate aim to provide a type-safe way to handle and sanitiz like user input.""" [dependencies] -untrusted_value_derive = { version = "0.3.2", optional = true, path = "../untrusted_value_derive"} +untrusted_value_derive = { version = "0.3.3", optional = true, path = "../untrusted_value_derive"} untrusted_value_derive_internals = { version = "0.3.1", path = "../untrusted_value_derive_internals"} [features] diff --git a/untrusted_value_derive/CHANGELOG.md b/untrusted_value_derive/CHANGELOG.md index 2ac61e0..29072cf 100644 --- a/untrusted_value_derive/CHANGELOG.md +++ b/untrusted_value_derive/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.3](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.3.2...untrusted_value_derive-v0.3.3) - 2025-06-20 + +### Other + +- fixed cargo fmt suggestions +- *(doc)* fixed cargo clippy errors + ## [0.3.2](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.3.1...untrusted_value_derive-v0.3.2) - 2025-04-04 ### Other diff --git a/untrusted_value_derive/Cargo.toml b/untrusted_value_derive/Cargo.toml index 5b5f111..ed46935 100644 --- a/untrusted_value_derive/Cargo.toml +++ b/untrusted_value_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "untrusted_value_derive" -version = "0.3.2" +version = "0.3.3" edition = "2021" readme = "../README.md" keywords = ["security", "sanitization", "validation", "taint", "static-analyis"]