Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCCF4 authored Jul 20, 2024
1 parent ec8b7e7 commit ddfc6c6
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
11 changes: 11 additions & 0 deletions untrusted_value/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.2.4"
version = "0.3.0"
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.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" ]
Expand Down
5 changes: 5 additions & 0 deletions untrusted_value_derive/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.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
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.2.4"
version = "0.3.0"
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.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
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.2.4"
version = "0.3.0"
edition = "2021"
readme = "../README.md"
keywords = ["security", "sanitization", "validation", "taint", "static-analyis"]
Expand Down

0 comments on commit ddfc6c6

Please sign in to comment.