Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions untrusted_value/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions untrusted_value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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]
Expand Down
7 changes: 7 additions & 0 deletions untrusted_value_derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion untrusted_value_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
Loading