-
Notifications
You must be signed in to change notification settings - Fork 349
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 #2140 from CosmWasm/chipshort/cargo-release-2.0
[2.0] Setup cargo-release
- Loading branch information
Showing
11 changed files
with
42 additions
and
68 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 = "2.0.2" | ||
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 = "2.0.2" | ||
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 = "2.0.2" | ||
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 = "2.0.2" | ||
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 = "2.0.2" | ||
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 = "2.0.2" | ||
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,12 +1,24 @@ | ||
[package] | ||
name = "cosmwasm-vm" | ||
version = "2.0.2" | ||
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"] | ||
# iterator allows us to iterate over all DB items in a given range | ||
|