Skip to content

Commit cc5e6e3

Browse files
authored
Merge pull request #1129 from jerus-org/fix-release
fix(release): correct tag message and name placeholders in release config
2 parents 24b1551 + 255aea8 commit cc5e6e3

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8080
- deps: update rust crate serde_json to 1.0.132(pr [#1126])
8181
- deps: update rust crate syn to 2.0.81(pr [#1127])
8282
- deps: update rust crate syn to 2.0.82(pr [#1128])
83+
- release: correct tag message and name placeholders in release config(pr [#1129])
8384

8485
### Security
8586

@@ -502,6 +503,7 @@ emitted if a tracing subscriber is not found.
502503
[#1126]: https://github.com/jerus-org/hcaptcha-rs/pull/1126
503504
[#1127]: https://github.com/jerus-org/hcaptcha-rs/pull/1127
504505
[#1128]: https://github.com/jerus-org/hcaptcha-rs/pull/1128
506+
[#1129]: https://github.com/jerus-org/hcaptcha-rs/pull/1129
505507
[Unreleased]: https://github.com/jerus-org/hcaptcha-rs/compare/v2.5.0...HEAD
506508
[2.5.0]: https://github.com/jerus-org/hcaptcha-rs/compare/v2.4.9...v2.5.0
507509
[2.4.9]: https://github.com/jerus-org/hcaptcha-rs/compare/v2.4.8...v2.4.9

hcaptcha-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "hcaptcha-cli"
33
version = "0.2.0"
4-
edition = "2021"
5-
publish = false
6-
rust-version = "1.75"
4+
edition.workspace = true
5+
publish.workspace = true
6+
rust-version.workspace = true
77

88
[dependencies]
99
clap.workspace = true

release.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pre-release-commit-message = "chore: Release"
2-
tag-message = "{{prefix}}v{{version}}"
3-
tag-name = "v{{version}}"
2+
tag-message = "{{tag_name}}"
3+
tag-name = "{{prefix}}v{{version}}"
44
consolidate-commits = true
55
allow-branch = ["main"]
66
sign-commit = true

0 commit comments

Comments
 (0)