Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCCF4 committed Jul 20, 2024
1 parent 760fe15 commit c5b5ceb
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
5 changes: 5 additions & 0 deletions untrusted_value/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.3.0...untrusted_value-v0.3.1) - 2024-07-20

### Added
- added SanitizeValueEnd derive macro for #[untrusted_derive(...)]

## [0.3.0](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.2.4...untrusted_value-v0.3.0) - 2024-07-20

### Added
Expand Down
6 changes: 3 additions & 3 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.0"
version = "0.3.1"
edition = "2021"
readme = "../README.md"
keywords = ["security", "sanitization", "validation", "taint", "static-analyis"]
Expand All @@ -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.3.0", optional = true, path = "../untrusted_value_derive"}
untrusted_value_derive_internals = { version = "0.3.0", path = "../untrusted_value_derive_internals"}
untrusted_value_derive = { version = "0.3.1", optional = true, path = "../untrusted_value_derive"}
untrusted_value_derive_internals = { version = "0.3.1", path = "../untrusted_value_derive_internals"}

[features]
derive = [ "dep:untrusted_value_derive" ]
Expand Down
8 changes: 8 additions & 0 deletions untrusted_value_derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.3.0...untrusted_value_derive-v0.3.1) - 2024-07-20

### Added
- added SanitizeValueEnd derive macro for #[untrusted_derive(...)]

### Other
- fixed clippy warning

## [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
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.0"
version = "0.3.1"
edition = "2021"
readme = "../README.md"
keywords = ["security", "sanitization", "validation", "taint", "static-analyis"]
Expand Down
5 changes: 5 additions & 0 deletions untrusted_value_derive_internals/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive_internals-v0.3.0...untrusted_value_derive_internals-v0.3.1) - 2024-07-20

### Added
- added SanitizeValueEnd derive macro for #[untrusted_derive(...)]

## [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
Expand Down
2 changes: 1 addition & 1 deletion untrusted_value_derive_internals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "untrusted_value_derive_internals"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
readme = "../README.md"
keywords = ["security", "sanitization", "validation", "taint", "static-analyis"]
Expand Down

0 comments on commit c5b5ceb

Please sign in to comment.