Skip to content

Commit

Permalink
Merge pull request #768 from CosmWasm/release-0.14-2
Browse files Browse the repository at this point in the history
Release 0.14-2
  • Loading branch information
maurolacy committed Jul 28, 2022
2 parents 7c46e35 + e3a6d29 commit d67face
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/storage-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ proc-macro = true
syn = { version = "1.0.96", features = ["full"] }

[dev-dependencies]
cw-storage-plus = { version = "0.14.0", path = "../storage-plus" }
cw-storage-plus = { version = "<=0.14.0, >=0.13.4", path = "../storage-plus" }
cosmwasm-std = { version = "1.0.0", default-features = false }
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
4 changes: 2 additions & 2 deletions scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ function print_usage() {
echo "Publishes crates to crates.io."
}

if [ $# = 1 ] && ( [ "$1" = "-h" ] || [ "$1" = "--help" ] )
if [ $# = 1 ] && { [ "$1" = "-h" ] || [ "$1" = "--help" ] ; }
then
print_usage
exit 1
fi

# this should really more to cosmwasm...
STORAGE_PACKAGES="storage-plus"
STORAGE_PACKAGES="storage-macro storage-plus"
# these are imported by other packages
BASE_PACKAGES="utils"
ALL_PACKAGES="controllers cw1 cw2 cw3 cw4 cw20 cw1155 multi-test"
Expand Down

0 comments on commit d67face

Please sign in to comment.