Skip to content

Commit d67face

Browse files
authored
Merge pull request #768 from CosmWasm/release-0.14-2
Release 0.14-2
2 parents 7c46e35 + e3a6d29 commit d67face

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/storage-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ proc-macro = true
1616
syn = { version = "1.0.96", features = ["full"] }
1717

1818
[dev-dependencies]
19-
cw-storage-plus = { version = "0.14.0", path = "../storage-plus" }
19+
cw-storage-plus = { version = "<=0.14.0, >=0.13.4", path = "../storage-plus" }
2020
cosmwasm-std = { version = "1.0.0", default-features = false }
2121
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

scripts/publish.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ function print_usage() {
77
echo "Publishes crates to crates.io."
88
}
99

10-
if [ $# = 1 ] && ( [ "$1" = "-h" ] || [ "$1" = "--help" ] )
10+
if [ $# = 1 ] && { [ "$1" = "-h" ] || [ "$1" = "--help" ] ; }
1111
then
1212
print_usage
1313
exit 1
1414
fi
1515

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

0 commit comments

Comments
 (0)