-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2138 from CosmWasm/chipshort/cargo-release-1.4
[1.4] Setup cargo-release
- Loading branch information
Showing
12 changed files
with
43 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Move to the workspace root | ||
WORKSPACE_PATH=$(dirname $(cargo locate-project --workspace --message-format=plain)) | ||
cd $WORKSPACE_PATH | ||
|
||
cargo build | ||
|
||
for contract_dir in contracts/*/; do | ||
(cd "$contract_dir" && cargo build) | ||
done |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-check" | ||
version = "1.4.4" | ||
version.workspace = true | ||
authors = ["Mauro Lacy <[email protected]>"] | ||
edition = "2021" | ||
description = "A CLI tool for verifying CosmWasm smart contracts" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-crypto" | ||
version = "1.4.4" | ||
version.workspace = true | ||
authors = ["Mauro Lacy <[email protected]>"] | ||
edition = "2021" | ||
description = "Crypto bindings for cosmwasm contracts" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-derive" | ||
version = "1.4.4" | ||
version.workspace = true | ||
authors = ["Simon Warta <[email protected]>"] | ||
edition = "2021" | ||
description = "A package for auto-generated code used for CosmWasm contract development. This is shipped as part of cosmwasm-std. Do not use directly." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-schema-derive" | ||
version = "1.4.4" | ||
version.workspace = true | ||
authors = ["Tomasz Kurcz <[email protected]>"] | ||
edition = "2021" | ||
description = "Derive macros for cosmwasm-schema" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-schema" | ||
version = "1.4.4" | ||
version.workspace = true | ||
authors = ["Simon Warta <[email protected]>", "Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "A dev-dependency for CosmWasm contracts to generate JSON Schema files." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-std" | ||
version = "1.4.4" | ||
version.workspace = true | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Standard library for Wasm based smart contracts on Cosmos blockchains" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-storage" | ||
version = "1.4.4" | ||
version.workspace = true | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "CosmWasm library with useful helpers for Storage patterns" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
[package] | ||
name = "cosmwasm-vm" | ||
version = "1.4.4" | ||
version.workspace = true | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "VM bindings to run cosmwams contracts" | ||
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-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 }, | ||
] | ||
|
||
[features] | ||
default = ["staking", "iterator"] | ||
# backtraces provides much better context at runtime errors (in non-wasm code) | ||
|