Skip to content

Commit

Permalink
Merge pull request #2321 from CosmWasm/mergify/bp/release/2.0/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 32430dc + 0037249 commit 3d4e9ca
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 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 = " "
24 changes: 16 additions & 8 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 @@ -43,16 +43,24 @@ clru = "0.6.1"
crc32fast = "1.3.2"
bech32 = "0.9.1"
# Uses the path when built locally; uses the given version from crates.io when published
cosmwasm-std = { path = "../std", version = "2.0.8", default-features = false, features = ["std"] }
cosmwasm-std = { path = "../std", version = "2.0.8", default-features = false, features = [
"std",
] }
cosmwasm-crypto = { path = "../crypto", version = "2.0.8" }
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.6", default-features = false, features = ["cranelift", "singlepass"] }
wasmer = { version = "=4.2.6", default-features = false, features = [
"cranelift",
"singlepass",
] }
wasmer-middlewares = "=4.2.6"
wasmer-types = "=4.2.6"
strum = { version = "0.25.0", default-features = false, features = ["derive"] }
Expand Down

0 comments on commit 3d4e9ca

Please sign in to comment.