Skip to content

Commit ceb4475

Browse files
authored
Merge pull request #174 from rust-secure-code/new-releases
New releases
2 parents 7af1021 + c746f2d commit ceb4475

File tree

11 files changed

+34
-13
lines changed

11 files changed

+34
-13
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auditable-cyclonedx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ categories = ["encoding"]
1212

1313
[dependencies]
1414
cyclonedx-bom = "0.5.0"
15-
auditable-serde = {version = "0.7.0", path = "../auditable-serde"}
15+
auditable-serde = {version = "0.8.0", path = "../auditable-serde"}

auditable-info/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.9.0] - 2024-11-11
9+
10+
### Changed
11+
12+
- Upgraded to `auditable-serde` v0.8.x
13+
- Upgraded to `miniz_oxide` v0.8.x and removed its types from the public API to simplify future upgrades
14+
815
## [0.8.0] - 2024-07-30
916

1017
### Changed

auditable-info/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "auditable-info"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Sergey \"Shnatsel\" Davidoff <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-secure-code/cargo-auditable"
@@ -13,7 +13,7 @@ edition = "2018"
1313
[dependencies]
1414
auditable-extract = {version = "0.3.4", path = "../auditable-extract", default-features = false }
1515
miniz_oxide = { version = "0.8.0", features = ["std"] }
16-
auditable-serde = {version = "0.7.0", path = "../auditable-serde", optional = true}
16+
auditable-serde = {version = "0.8.0", path = "../auditable-serde", optional = true}
1717
serde_json = { version = "1.0.57", optional = true }
1818

1919
[features]

auditable-serde/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.8.0] - 2024-11-11
8+
### Removed
9+
- Removed the conversion from `cargo_metadata` structures. The `cargo_metadata` crate makes breaking changes quite frequently, and we need to be able to upgrade it without breaking semver on this crate.
10+
711
## [0.7.0] - 2024-07-30
812
### Changed
913
- Removed the disabled-by-default conversion from the internal format to Cargo.lock. The Cargo.lock format is unstable, and the conversion to CycloneDX is a better idea these days.

auditable-serde/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "auditable-serde"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Sergey \"Shnatsel\" Davidoff <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-secure-code/cargo-auditable"

auditable2cdx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
auditable-info = {version = "0.8.0", path = "../auditable-info"}
9+
auditable-info = {version = "0.9.0", path = "../auditable-info"}
1010
auditable-cyclonedx = {version = "0.1.0", path = "../auditable-cyclonedx"}
1111
serde_json = {version = "1.0.114", features = ["preserve_order"] } # the feature is needed for workarounds module only
1212

cargo-auditable/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.5] - 2024-11-11
9+
10+
### Added
11+
12+
- Upgraded the `cargo_metadata` dependency to gain support for Rust 2024 edition
13+
14+
### Fixed
15+
16+
- Fixed build on `riscv64-linux-android` target and certain custom RISC-V targets
17+
818
## [0.6.4] - 2024-05-08
919

1020
### Added

cargo-auditable/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-auditable"
3-
version = "0.6.4"
3+
version = "0.6.5"
44
edition = "2021"
55
authors = ["Sergey \"Shnatsel\" Davidoff <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -14,7 +14,7 @@ readme = "../README.md"
1414

1515
[dependencies]
1616
object = {version = "0.30", default-features = false, features = ["write"]}
17-
auditable-serde = {version = "0.7.0", path = "../auditable-serde"}
17+
auditable-serde = {version = "0.8.0", path = "../auditable-serde"}
1818
miniz_oxide = {version = "0.8.0"}
1919
serde_json = "1.0.57"
2020
cargo_metadata = "0.18"
@@ -24,5 +24,5 @@ wasm-gen = "0.1.4"
2424

2525
[dev-dependencies]
2626
cargo_metadata = "0.18"
27-
auditable-info = {version = "0.8.0", path = "../auditable-info", features = ["wasm"]}
27+
auditable-info = {version = "0.9.0", path = "../auditable-info", features = ["wasm"]}
2828
which = "4.3.0"

rust-audit-info/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)