Skip to content

Commit 3d4e9ca

Browse files
authored
Merge pull request #2321 from CosmWasm/mergify/bp/release/2.0/pr-2300
Fix replacement order (backport #2300)
2 parents 32430dc + 0037249 commit 3d4e9ca

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

.taplo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[formatting]
2+
indent_string = " "

packages/vm/Cargo.toml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ license = "Apache-2.0"
1010
[package.metadata.release]
1111
pre-release-hook = ["../../devtools/release_checks.sh"]
1212
pre-release-replacements = [
13-
{ file = "../../CHANGELOG.md", search = "## \\[Unreleased\\]", replace = "## [{{version}}] - {{date}}", exactly = 1 },
14-
{ file = "../../CHANGELOG.md", search = "(U|u)nreleased", replace = "{{version}}" },
15-
{ file = "../../CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n\n## [Unreleased]", exactly = 1 },
16-
{ file = "../../CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
17-
{ file = "../../CHANGELOG.md", search = "<!-- next-url -->\n", replace = "<!-- next-url -->\n\n[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/{{tag_name}}...HEAD", exactly = 1 },
13+
{ file = "../../CHANGELOG.md", search = "## \\[Unreleased\\]", replace = "## [{{version}}] - {{date}}", exactly = 1 },
14+
{ file = "../../CHANGELOG.md", search = "(U|u)nreleased", replace = "{{version}}" },
15+
{ file = "../../CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n\n## [Unreleased]", exactly = 1 },
16+
{ file = "../../CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
17+
{ file = "../../CHANGELOG.md", search = "<!-- next-url -->\n", replace = "<!-- next-url -->\n\n[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/{{tag_name}}...HEAD", exactly = 1 },
1818
]
1919

2020
[features]
@@ -43,16 +43,24 @@ clru = "0.6.1"
4343
crc32fast = "1.3.2"
4444
bech32 = "0.9.1"
4545
# Uses the path when built locally; uses the given version from crates.io when published
46-
cosmwasm-std = { path = "../std", version = "2.0.8", default-features = false, features = ["std"] }
46+
cosmwasm-std = { path = "../std", version = "2.0.8", default-features = false, features = [
47+
"std",
48+
] }
4749
cosmwasm-crypto = { path = "../crypto", version = "2.0.8" }
4850
derivative = "2"
4951
hex = "0.4"
5052
schemars = "0.8.3"
51-
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
53+
serde = { version = "1.0.103", default-features = false, features = [
54+
"derive",
55+
"alloc",
56+
] }
5257
serde_json = "1.0.40"
5358
sha2 = "0.10.3"
5459
thiserror = "1.0.26"
55-
wasmer = { version = "=4.2.6", default-features = false, features = ["cranelift", "singlepass"] }
60+
wasmer = { version = "=4.2.6", default-features = false, features = [
61+
"cranelift",
62+
"singlepass",
63+
] }
5664
wasmer-middlewares = "=4.2.6"
5765
wasmer-types = "=4.2.6"
5866
strum = { version = "0.25.0", default-features = false, features = ["derive"] }

0 commit comments

Comments
 (0)