Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #963

Merged
merged 1 commit into from
Sep 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions 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.3.23](https://github.com/MarcoIeni/release-plz/compare/release-plz-v0.3.22...release-plz-v0.3.23) - 2023-09-16

### Added
- allow disabling git tag ([#968](https://github.com/MarcoIeni/release-plz/pull/968))
- pass commit ids to git-cliff ([#967](https://github.com/MarcoIeni/release-plz/pull/967))

### Other
- add additional clippy lints ([#965](https://github.com/MarcoIeni/release-plz/pull/965))

## [0.3.22](https://github.com/MarcoIeni/release-plz/compare/release-plz-v0.3.21...release-plz-v0.3.22) - 2023-09-11

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

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

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

## [Unreleased]

## [0.1.30](https://github.com/MarcoIeni/release-plz/compare/cargo_utils-v0.1.29...cargo_utils-v0.1.30) - 2023-09-16

### Other
- add additional clippy lints ([#965](https://github.com/MarcoIeni/release-plz/pull/965))

## [0.1.29](https://github.com/MarcoIeni/release-plz/compare/cargo_utils-v0.1.28...cargo_utils-v0.1.29) - 2023-09-08

### 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.29"
version = "0.1.30"
edition = "2021"
description = "Utilities around cargo and Rust workspaces"
repository = "https://github.com/MarcoIeni/release-plz/tree/main/crates/cargo_utils"
Expand Down
5 changes: 5 additions & 0 deletions crates/git_cmd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.12](https://github.com/MarcoIeni/release-plz/compare/git_cmd-v0.4.11...git_cmd-v0.4.12) - 2023-09-16

### Other
- add additional clippy lints ([#965](https://github.com/MarcoIeni/release-plz/pull/965))

## [0.4.11](https://github.com/MarcoIeni/release-plz/compare/git_cmd-v0.4.10...git_cmd-v0.4.11) - 2023-09-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/git_cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git_cmd"
version = "0.4.11"
version = "0.4.12"
edition = "2021"
description = "Wrapper around git cli"
repository = "https://github.com/MarcoIeni/release-plz/tree/main/crates/git_cmd"
Expand Down
5 changes: 5 additions & 0 deletions crates/next_version/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.7](https://github.com/MarcoIeni/release-plz/compare/next_version-v0.2.6...next_version-v0.2.7) - 2023-09-16

### Other
- add additional clippy lints ([#965](https://github.com/MarcoIeni/release-plz/pull/965))

## [0.2.6](https://github.com/MarcoIeni/release-plz/compare/next_version-v0.2.5...next_version-v0.2.6) - 2023-09-08

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/next_version/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "next_version"
version = "0.2.6"
version = "0.2.7"
edition = "2021"
description = "Determine next semantic version based on conventional commits"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 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.22"
version = "0.3.23"
edition = "2021"
description = "Update version and changelog based on semantic versioning and conventional commits"
repository = "https://github.com/MarcoIeni/release-plz"
Expand All @@ -19,8 +19,8 @@ default = ["docker-tests"]
docker-tests = []

[dependencies]
git_cmd = { path = "../git_cmd", version = "0.4.11" }
release_plz_core = { path = "../release_plz_core", version = "0.13.4" }
git_cmd = { path = "../git_cmd", version = "0.4.12" }
release_plz_core = { path = "../release_plz_core", version = "0.13.5" }

anyhow.workspace = true
base64.workspace = true
Expand Down
9 changes: 9 additions & 0 deletions crates/release_plz_core/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.13.5](https://github.com/MarcoIeni/release-plz/compare/release_plz_core-v0.13.4...release_plz_core-v0.13.5) - 2023-09-16

### Added
- allow disabling git tag ([#968](https://github.com/MarcoIeni/release-plz/pull/968))
- pass commit ids to git-cliff ([#967](https://github.com/MarcoIeni/release-plz/pull/967))

### Other
- add additional clippy lints ([#965](https://github.com/MarcoIeni/release-plz/pull/965))

## [0.13.4](https://github.com/MarcoIeni/release-plz/compare/release_plz_core-v0.13.3...release_plz_core-v0.13.4) - 2023-09-11

### Added
Expand Down
8 changes: 4 additions & 4 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.13.4"
version = "0.13.5"
edition = "2021"
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 @@ -12,9 +12,9 @@ categories = ["development-tools"]
workspace = true

[dependencies]
cargo_utils = { path = "../cargo_utils", version = "0.1.29" }
git_cmd = { path = "../git_cmd", version = "0.4.11" }
next_version = { path = "../next_version", version = "0.2.6" }
cargo_utils = { path = "../cargo_utils", version = "0.1.30" }
git_cmd = { path = "../git_cmd", version = "0.4.12" }
next_version = { path = "../next_version", version = "0.2.7" }

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

## [Unreleased]

## [0.1.21](https://github.com/MarcoIeni/release-plz/compare/test_logs-v0.1.20...test_logs-v0.1.21) - 2023-09-16

### Other
- add additional clippy lints ([#965](https://github.com/MarcoIeni/release-plz/pull/965))

## [0.1.20](https://github.com/MarcoIeni/release-plz/compare/test_logs-v0.1.19...test_logs-v0.1.20) - 2023-09-08

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/test_logs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_logs"
version = "0.1.20"
version = "0.1.21"
edition = "2021"
description = "Library to see logs in tests"
license = "MIT OR Apache-2.0"
Expand Down
Loading