Skip to content

Commit

Permalink
Merge pull request #174 from rust-secure-code/new-releases
Browse files Browse the repository at this point in the history
New releases
  • Loading branch information
Shnatsel authored Nov 11, 2024
2 parents 7af1021 + c746f2d commit ceb4475
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auditable-cyclonedx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ categories = ["encoding"]

[dependencies]
cyclonedx-bom = "0.5.0"
auditable-serde = {version = "0.7.0", path = "../auditable-serde"}
auditable-serde = {version = "0.8.0", path = "../auditable-serde"}
7 changes: 7 additions & 0 deletions auditable-info/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.0] - 2024-11-11

### Changed

- Upgraded to `auditable-serde` v0.8.x
- Upgraded to `miniz_oxide` v0.8.x and removed its types from the public API to simplify future upgrades

## [0.8.0] - 2024-07-30

### Changed
Expand Down
4 changes: 2 additions & 2 deletions auditable-info/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auditable-info"
version = "0.8.0"
version = "0.9.0"
authors = ["Sergey \"Shnatsel\" Davidoff <shnatsel@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-secure-code/cargo-auditable"
Expand All @@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
auditable-extract = {version = "0.3.4", path = "../auditable-extract", default-features = false }
miniz_oxide = { version = "0.8.0", features = ["std"] }
auditable-serde = {version = "0.7.0", path = "../auditable-serde", optional = true}
auditable-serde = {version = "0.8.0", path = "../auditable-serde", optional = true}
serde_json = { version = "1.0.57", optional = true }

[features]
Expand Down
4 changes: 4 additions & 0 deletions auditable-serde/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.0] - 2024-11-11
### Removed
- 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.

## [0.7.0] - 2024-07-30
### Changed
- 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.
Expand Down
2 changes: 1 addition & 1 deletion auditable-serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auditable-serde"
version = "0.7.0"
version = "0.8.0"
authors = ["Sergey \"Shnatsel\" Davidoff <shnatsel@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-secure-code/cargo-auditable"
Expand Down
2 changes: 1 addition & 1 deletion auditable2cdx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

Expand Down
10 changes: 10 additions & 0 deletions cargo-auditable/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.5] - 2024-11-11

### Added

- Upgraded the `cargo_metadata` dependency to gain support for Rust 2024 edition

### Fixed

- Fixed build on `riscv64-linux-android` target and certain custom RISC-V targets

## [0.6.4] - 2024-05-08

### Added
Expand Down
6 changes: 3 additions & 3 deletions cargo-auditable/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-auditable"
version = "0.6.4"
version = "0.6.5"
edition = "2021"
authors = ["Sergey \"Shnatsel\" Davidoff <shnatsel@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,7 +14,7 @@ readme = "../README.md"

[dependencies]
object = {version = "0.30", default-features = false, features = ["write"]}
auditable-serde = {version = "0.7.0", path = "../auditable-serde"}
auditable-serde = {version = "0.8.0", path = "../auditable-serde"}
miniz_oxide = {version = "0.8.0"}
serde_json = "1.0.57"
cargo_metadata = "0.18"
Expand All @@ -24,5 +24,5 @@ wasm-gen = "0.1.4"

[dev-dependencies]
cargo_metadata = "0.18"
auditable-info = {version = "0.8.0", path = "../auditable-info", features = ["wasm"]}
auditable-info = {version = "0.9.0", path = "../auditable-info", features = ["wasm"]}
which = "4.3.0"
2 changes: 1 addition & 1 deletion rust-audit-info/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-audit-info/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
auditable-info = {version = "0.8.0", default-features = false, path = "../auditable-info"}
auditable-info = {version = "0.9.0", default-features = false, path = "../auditable-info"}

[features]
wasm = ["auditable-info/wasm"]
Expand Down

0 comments on commit ceb4475

Please sign in to comment.