Skip to content

Commit

Permalink
chore: release (#1720)
Browse files Browse the repository at this point in the history
Co-authored-by: release-plz[bot] <106432666+release-plz[bot]@users.noreply.github.com>
  • Loading branch information
release-plz[bot] authored Sep 30, 2024
1 parent 2e65086 commit cdc76af
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.93](https://github.com/MarcoIeni/release-plz/compare/release-plz-v0.3.92...release-plz-v0.3.93) - 2024-09-30

### Fixed

- retrieve token for each package's registry ala `cargo:token` ([#1669](https://github.com/MarcoIeni/release-plz/pull/1669))
- Disable changelog in PR body if it goes over github character limit ([#1716](https://github.com/MarcoIeni/release-plz/pull/1716))

## [0.3.92](https://github.com/MarcoIeni/release-plz/compare/release-plz-v0.3.91...release-plz-v0.3.92) - 2024-09-28

### Added
Expand Down
23 changes: 11 additions & 12 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions crates/cargo_utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.57](https://github.com/MarcoIeni/release-plz/compare/cargo_utils-v0.1.56...cargo_utils-v0.1.57) - 2024-09-30

### Fixed

- retrieve token for each package's registry ala `cargo:token` ([#1669](https://github.com/MarcoIeni/release-plz/pull/1669))

## [0.1.56](https://github.com/MarcoIeni/release-plz/compare/cargo_utils-v0.1.55...cargo_utils-v0.1.56) - 2024-09-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/cargo_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo_utils"
version = "0.1.56"
version = "0.1.57"
edition.workspace = true
description = "Utilities around cargo and Rust workspaces"
repository = "https://github.com/MarcoIeni/release-plz/tree/main/crates/cargo_utils"
Expand Down
4 changes: 2 additions & 2 deletions crates/release_plz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "release-plz"
version = "0.3.92"
version = "0.3.93"
edition.workspace = true
description = "Update version and changelog based on semantic versioning and conventional commits"
repository = "https://github.com/MarcoIeni/release-plz"
Expand All @@ -21,7 +21,7 @@ all-static = ["release_plz_core/all-static"]

[dependencies]
git_cmd = { path = "../git_cmd", version = "0.6.12" }
release_plz_core = { path = "../release_plz_core", version = "0.27.0", default-features = false }
release_plz_core = { path = "../release_plz_core", version = "0.27.1", default-features = false }
cargo_utils = { path = "../cargo_utils", version = "0.1" }

anyhow.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/release_plz_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.27.1](https://github.com/MarcoIeni/release-plz/compare/release_plz_core-v0.27.0...release_plz_core-v0.27.1) - 2024-09-30

### Fixed

- Disable changelog in PR body if it goes over github character limit ([#1716](https://github.com/MarcoIeni/release-plz/pull/1716))
- retrieve token for each package's registry ala `cargo:token` ([#1669](https://github.com/MarcoIeni/release-plz/pull/1669))

## [0.27.0](https://github.com/MarcoIeni/release-plz/compare/release_plz_core-v0.26.2...release_plz_core-v0.27.0) - 2024-09-28

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/release_plz_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "release_plz_core"
version = "0.27.0"
version = "0.27.1"
edition.workspace = true
description = "Update version and changelog based on semantic versioning and conventional commits"
repository = "https://github.com/MarcoIeni/release-plz/tree/main/crates/release_plz_core"
Expand All @@ -17,7 +17,7 @@ all-static = ["cargo/vendored-libgit2", "cargo/all-static"]

[dependencies]
base64.workspace = true
cargo_utils = { path = "../cargo_utils", version = "0.1.56" }
cargo_utils = { path = "../cargo_utils", version = "0.1.57" }
git_cmd = { path = "../git_cmd", version = "0.6.12" }
next_version = { path = "../next_version", version = "0.2" }

Expand Down

0 comments on commit cdc76af

Please sign in to comment.