Skip to content

Commit

Permalink
Merge pull request #5 from 0xCCF4/release-plz-2024-07-17T09-14-19Z
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
0xCCF4 authored Jul 17, 2024
2 parents 7a37981 + 859391b commit d938fbd
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 5 deletions.
9 changes: 9 additions & 0 deletions untrusted_value/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.1.3...untrusted_value-v0.2.0) - 2024-07-17

### Added
- Added #[untrusted_inputs] func macro
- [**breaking**] Added derive macro for SanitizeValue and option to add derive macros for the UntrustedVariant using #[untrusted_derive(...)]

### Other
- added keywords taint, static-analysis

## [0.1.3](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value-v0.1.2...untrusted_value-v0.1.3) - 2024-07-15

### 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.1.3"
version = "0.2.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.1.0", optional = true, path = "../untrusted_value_derive"}
untrusted_value_derive_internals = {version = "0.1.0", path = "../untrusted_value_derive_internals"}
untrusted_value_derive = { version = "0.2.0", optional = true, path = "../untrusted_value_derive"}
untrusted_value_derive_internals = { version = "0.2.0", path = "../untrusted_value_derive_internals"}

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

## [Unreleased]

## [0.2.0](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.1.1...untrusted_value_derive-v0.2.0) - 2024-07-17

### Added
- Added #[untrusted_inputs] func macro
- [**breaking**] Added derive macro for SanitizeValue and option to add derive macros for the UntrustedVariant using #[untrusted_derive(...)]

### Fixed
- fixed typo in derive_sanitize_harden implementation

### Other
- added keywords taint, static-analysis
- changes macro path to untrusted_value to absolute
- fixed failing doc tests

## [0.1.1](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive-v0.1.0...untrusted_value_derive-v0.1.1) - 2024-07-15

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

## [Unreleased]

## [0.2.0](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive_internals-v0.1.1...untrusted_value_derive_internals-v0.2.0) - 2024-07-17

### Added
- Added #[untrusted_inputs] func macro
- [**breaking**] Added derive macro for SanitizeValue and option to add derive macros for the UntrustedVariant using #[untrusted_derive(...)]

### Other
- added keywords taint, static-analysis

## [0.1.1](https://github.com/0xCCF4/UntrustedValue/compare/untrusted_value_derive_internals-v0.1.0...untrusted_value_derive_internals-v0.1.1) - 2024-07-15

### Fixed
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.1.1"
version = "0.2.0"
edition = "2021"
readme = "../README.md"
keywords = ["security", "sanitization", "validation", "taint", "static-analyis"]
Expand Down

0 comments on commit d938fbd

Please sign in to comment.