Skip to content

Commit

Permalink
Merge pull request #2320 from CosmWasm/mergify/bp/release/2.1/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 e5bba1a + aeda77c commit 78400fa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 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 = " "
22 changes: 12 additions & 10 deletions packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ repository = "https://github.com/CosmWasm/cosmwasm/tree/main/packages/vm"
license = "Apache-2.0"

[package.metadata.release]
pre-release-hook = [
"../../devtools/release_checks.sh"
]
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 @@ -46,7 +44,9 @@ crc32fast = "1.3.2"
bech32 = "0.11.0"
# Uses the path when built locally; uses the given version from crates.io when published
cosmwasm-core = { version = "2.1.5", path = "../core" }
cosmwasm-std = { version = "2.1.5", path = "../std", default-features = false, features = ["std"] }
cosmwasm-std = { version = "2.1.5", path = "../std", default-features = false, features = [
"std",
] }
cosmwasm-crypto = { version = "2.1.5", path = "../crypto" }
derivative = "2"
hex = "0.4"
Expand All @@ -56,7 +56,9 @@ serde = { workspace = true }
serde_json = "1.0.40"
sha2 = "0.10.3"
thiserror = "1.0.26"
wasmer = { version = "=4.3.3", default-features = false, features = ["singlepass"] }
wasmer = { version = "=4.3.3", default-features = false, features = [
"singlepass",
] }
wasmer-middlewares = "=4.3.3"
wasmer-types = "=4.3.3"
strum = { version = "0.26.2", default-features = false, features = ["derive"] }
Expand Down

0 comments on commit 78400fa

Please sign in to comment.