Skip to content

Commit

Permalink
Merge pull request #2322 from CosmWasm/mergify/bp/release/1.5/pr-2300
Browse files Browse the repository at this point in the history
Fix replacement order (backport #2300)
  • Loading branch information
chipshort authored Dec 16, 2024
2 parents 40c0c0d + 5b6d091 commit ed37bff
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .taplo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[formatting]
indent_string = " "
20 changes: 13 additions & 7 deletions packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ license = "Apache-2.0"
[package.metadata.release]
pre-release-hook = ["../../devtools/release_checks.sh"]
pre-release-replacements = [
{ file = "../../CHANGELOG.md", search = "## \\[Unreleased\\]", replace = "## [{{version}}] - {{date}}", exactly = 1 },
{ file = "../../CHANGELOG.md", search = "(U|u)nreleased", replace = "{{version}}" },
{ file = "../../CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n\n## [Unreleased]", exactly = 1 },
{ file = "../../CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
{ file = "../../CHANGELOG.md", search = "<!-- next-url -->\n", replace = "<!-- next-url -->\n\n[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/{{tag_name}}...HEAD", exactly = 1 },
{ file = "../../CHANGELOG.md", search = "## \\[Unreleased\\]", replace = "## [{{version}}] - {{date}}", exactly = 1 },
{ file = "../../CHANGELOG.md", search = "(U|u)nreleased", replace = "{{version}}" },
{ file = "../../CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n\n## [Unreleased]", exactly = 1 },
{ file = "../../CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
{ file = "../../CHANGELOG.md", search = "<!-- next-url -->\n", replace = "<!-- next-url -->\n\n[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/{{tag_name}}...HEAD", exactly = 1 },
]

[features]
Expand Down Expand Up @@ -54,11 +54,17 @@ cosmwasm-crypto = { path = "../crypto", version = "1.5.9" }
derivative = "2"
hex = "0.4"
schemars = "0.8.3"
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
serde = { version = "1.0.103", default-features = false, features = [
"derive",
"alloc",
] }
serde_json = "1.0.40"
sha2 = "0.10.3"
thiserror = "1.0.26"
wasmer = { version = "=4.2.2", default-features = false, features = ["cranelift", "singlepass"] }
wasmer = { version = "=4.2.2", default-features = false, features = [
"cranelift",
"singlepass",
] }
wasmer-types = "=4.2.2"
wasmer-middlewares = "=4.2.2"

Expand Down

0 comments on commit ed37bff

Please sign in to comment.