Skip to content

Commit

Permalink
Merge pull request #135 from rust-secure-code/new-release
Browse files Browse the repository at this point in the history
New releases of cargo-auditable and auditable-serde
  • Loading branch information
Shnatsel authored Feb 19, 2024
2 parents 1ebac6f + 8a2fe60 commit f56bb45
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

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.6.1] - 2024-02-19
### Fixed
- `from_metadata` feature: Fixed creating a cyclic dependency graph under [certain conditions](https://github.com/rustsec/rustsec/issues/1043).

## [0.6.0] - 2023-04-27
### Changed
- `toml` feature: upgraded to `cargo-lock` crate v9.x
Expand Down
4 changes: 2 additions & 2 deletions auditable-serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auditable-serde"
version = "0.6.0"
version = "0.6.1"
authors = ["Sergey \"Shnatsel\" Davidoff <shnatsel@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-secure-code/cargo-auditable"
Expand Down Expand Up @@ -32,4 +32,4 @@ required-features = ["toml"]

[[example]]
name = "from-metadata"
required-features = ["from_metadata"]
required-features = ["from_metadata"]
6 changes: 5 additions & 1 deletion cargo-auditable/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ 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.2] - UNRELEASED
## [0.6.2] - 2024-02-19

### Fixed
- Fixed `cargo auditable` encoding a cyclic dependency graph under [certain conditions](https://github.com/rustsec/rustsec/issues/1043)
- Fixed an integration test failing intermittently on recent Rust versions

### Changed

Expand Down
4 changes: 2 additions & 2 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.1"
version = "0.6.2"
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.6.0", path = "../auditable-serde", features = ["from_metadata"]}
auditable-serde = {version = "0.6.1", path = "../auditable-serde", features = ["from_metadata"]}
miniz_oxide = {version = "0.6.0"}
serde_json = "1.0.57"
cargo_metadata = "0.15"
Expand Down

0 comments on commit f56bb45

Please sign in to comment.