Skip to content

Commit

Permalink
Merge pull request #483 from CosmWasm/release-0.10
Browse files Browse the repository at this point in the history
Release 0.10.0
  • Loading branch information
ethanfrey authored Oct 11, 2021
2 parents da45475 + 66f6b70 commit ac17789
Show file tree
Hide file tree
Showing 91 changed files with 152 additions and 6,476 deletions.
114 changes: 0 additions & 114 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ workflows:
- contract_cw20_ics20
- contract_cw20_staking
- contract_cw20_merkle_airdrop
- contract_cw721_base
- contract_cw721_metadata_uri
- contract_cw1155_base
- package_controllers
- package_cw0
Expand All @@ -26,7 +24,6 @@ workflows:
- package_cw3
- package_cw4
- package_cw20
- package_cw721
- package_cw1155
- package_multi_test
- package_storage_plus
Expand Down Expand Up @@ -513,79 +510,6 @@ jobs:
- target
key: cargocache-cw20-merkle-airdrop-rust:1.53.0-{{ checksum "~/project/Cargo.lock" }}

contract_cw721_base:
docker:
- image: rust:1.53.0
working_directory: ~/project/contracts/cw721-base
steps:
- checkout:
path: ~/project
- run:
name: Version information
command: rustc --version; cargo --version; rustup --version
- restore_cache:
keys:
- cargocache-cw721-base-rust:1.53.0-{{ checksum "~/project/Cargo.lock" }}
- run:
name: Unit Tests
environment:
RUST_BACKTRACE: 1
command: cargo unit-test --locked
- run:
name: Build and run schema generator
command: cargo schema --locked
- run:
name: Ensure checked-in schemas are up-to-date
command: |
CHANGES_IN_REPO=$(git status --porcelain)
if [[ -n "$CHANGES_IN_REPO" ]]; then
echo "Repository is dirty. Showing 'git status' and 'git --no-pager diff' for debugging now:"
git status && git --no-pager diff
exit 1
fi
- save_cache:
paths:
- /usr/local/cargo/registry
- target
key: cargocache-cw721-base-rust:1.53.0-{{ checksum "~/project/Cargo.lock" }}


contract_cw721_metadata_uri:
docker:
- image: rust:1.53.0
working_directory: ~/project/contracts/cw721-metadata-uri
steps:
- checkout:
path: ~/project
- run:
name: Version information
command: rustc --version; cargo --version; rustup --version
- restore_cache:
keys:
- cargocache-cw721-metadata-uri-rust:1.53.0-{{ checksum "~/project/Cargo.lock" }}
- run:
name: Unit Tests
environment:
RUST_BACKTRACE: 1
command: cargo unit-test --locked
- run:
name: Build and run schema generator
command: cargo schema --locked
- run:
name: Ensure checked-in schemas are up-to-date
command: |
CHANGES_IN_REPO=$(git status --porcelain)
if [[ -n "$CHANGES_IN_REPO" ]]; then
echo "Repository is dirty. Showing 'git status' and 'git --no-pager diff' for debugging now:"
git status && git --no-pager diff
exit 1
fi
- save_cache:
paths:
- /usr/local/cargo/registry
- target
key: cargocache-cw721-metadata-uri-rust:1.53.0-{{ checksum "~/project/Cargo.lock" }}

contract_cw1155_base:
docker:
- image: rust:1.53.0
Expand Down Expand Up @@ -846,44 +770,6 @@ jobs:
- target
key: cargocache-v2-cw20:1.53.0-{{ checksum "~/project/Cargo.lock" }}

package_cw721:
docker:
- image: rust:1.53.0
working_directory: ~/project/packages/cw721
steps:
- checkout:
path: ~/project
- run:
name: Version information
command: rustc --version; cargo --version; rustup --version; rustup target list --installed
- restore_cache:
keys:
- cargocache-v2-cw721:1.53.0-{{ checksum "~/project/Cargo.lock" }}
- run:
name: Build library for native target
command: cargo build --locked
- run:
name: Run unit tests
command: cargo test --locked
- run:
name: Build and run schema generator
command: cargo schema --locked
- run:
name: Ensure schemas are up-to-date
command: |
CHANGES_IN_REPO=$(git status --porcelain)
if [[ -n "$CHANGES_IN_REPO" ]]; then
echo "Repository is dirty. Showing 'git status' and 'git --no-pager diff' for debugging now:"
git status && git --no-pager diff
exit 1
fi
- save_cache:
paths:
- /usr/local/cargo/registry
- target
key: cargocache-v2-cw721:1.53.0-{{ checksum "~/project/Cargo.lock" }}


package_cw1155:
docker:
- image: rust:1.53.0
Expand Down
88 changes: 23 additions & 65 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ac17789

Please sign in to comment.