Skip to content

Commit 5e47aa9

Browse files
committed
Published version v2.2.3
1 parent 9fa5021 commit 5e47aa9

File tree

33 files changed

+552
-296
lines changed

33 files changed

+552
-296
lines changed

.github/workflows/contracts.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: contracts
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [ "main" ]
67
pull_request:

.github/workflows/packages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: packages
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [ "main" ]
67
pull_request:

Cargo.lock

Lines changed: 155 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@ exclude = ["contracts"]
55
resolver = "2"
66

77
[workspace.package]
8-
version = "2.2.3-dev"
8+
version = "2.2.3"
99

1010
[workspace.dependencies]
11-
cosmwasm-core = { path = "./packages/core" }
12-
cosmwasm-crypto = { path = "./packages/crypto" }
13-
cosmwasm-derive = { path = "./packages/derive" }
14-
cosmwasm-schema = { path = "./packages/schema" }
15-
cosmwasm-schema-derive = { path = "./packages/schema-derive" }
16-
cosmwasm-std = { path = "./packages/std", default-features = false }
17-
cosmwasm-vm = { path = "./packages/vm" }
18-
cosmwasm-vm-derive = { path = "./packages/vm-derive" }
11+
# Keep the cosmwasm-* dependencies in publishing order:
12+
cosmwasm-core = { version = "2.2.3" }
13+
cosmwasm-schema-derive = { version = "2.2.3" }
14+
cosmwasm-schema = { version = "2.2.3" }
15+
cosmwasm-vm-derive = { version = "2.2.3" }
16+
cosmwasm-derive = { version = "2.2.3" }
17+
cosmwasm-crypto = { version = "2.2.3" }
18+
cosmwasm-std = { version = "2.2.3", default-features = false }
19+
cosmwasm-vm = { version = "2.2.3" }
20+
# Now, do not forget to publish 'cosmwasm-check'
21+
1922
schemars = "0.8.4"
2023
serde = { version = "1.0.192", default-features = false, features = ["alloc", "derive"] }
2124
serde_json = "1.0.140"

0 commit comments

Comments
 (0)