Skip to content

Commit e240374

Browse files
authored
Upgraded non-cw dependencies (#228)
1 parent 2ac6412 commit e240374

File tree

10 files changed

+166
-104
lines changed

10 files changed

+166
-104
lines changed

.circleci/config.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ workflows:
3030
jobs:
3131
build_and_test:
3232
docker:
33-
- image: rust:1.75
33+
- image: rust:1.78
3434
working_directory: ~/project
3535
steps:
3636
- checkout
@@ -42,8 +42,8 @@ jobs:
4242
command: cargo update
4343
- restore_cache:
4444
keys:
45-
- cargocache-v2-multi-test:1.75-{{ checksum "Cargo.lock" }}
46-
- cargocache-v2-multi-test:1.75-
45+
- cargocache-v2-multi-test:1.78-{{ checksum "Cargo.lock" }}
46+
- cargocache-v2-multi-test:1.78-
4747
- run:
4848
name: Build library for native target
4949
command: cargo build --locked
@@ -54,7 +54,7 @@ jobs:
5454
paths:
5555
- /usr/local/cargo/registry
5656
- target
57-
key: cargocache-v2-multi-test:1.75-{{ checksum "Cargo.lock" }}
57+
key: cargocache-v2-multi-test:1.78-{{ checksum "Cargo.lock" }}
5858

5959
build_minimal:
6060
docker:
@@ -74,7 +74,7 @@ jobs:
7474
command: cargo update -p ahash && cargo update -p num-bigint
7575
- restore_cache:
7676
keys:
77-
- cargocache-v2-multi-test:1.75-minimal-{{ checksum "Cargo.toml" }}
77+
- cargocache-v2-multi-test:1.78-minimal-{{ checksum "Cargo.toml" }}
7878
- run:
7979
name: Build library for native target
8080
command: cargo build -Zminimal-versions --all-features
@@ -85,11 +85,11 @@ jobs:
8585
paths:
8686
- /usr/local/cargo/registry
8787
- target
88-
key: cargocache-v2-multi-test:1.75-minimal-{{ checksum "Cargo.toml" }}
88+
key: cargocache-v2-multi-test:1.78-minimal-{{ checksum "Cargo.toml" }}
8989

9090
build_maximal:
9191
docker:
92-
- image: rust:1.75
92+
- image: rust:1.78
9393
working_directory: ~/project
9494
steps:
9595
- checkout
@@ -101,7 +101,7 @@ jobs:
101101
command: cargo update
102102
- restore_cache:
103103
keys:
104-
- cargocache-v2-multi-test:1.75-{{ checksum "Cargo.lock" }}
104+
- cargocache-v2-multi-test:1.78-{{ checksum "Cargo.lock" }}
105105
- run:
106106
name: Build library for native target
107107
command: cargo build --locked --all-features
@@ -112,11 +112,11 @@ jobs:
112112
paths:
113113
- /usr/local/cargo/registry
114114
- target
115-
key: cargocache-v2-multi-test:1.75-{{ checksum "Cargo.lock" }}
115+
key: cargocache-v2-multi-test:1.78-{{ checksum "Cargo.lock" }}
116116

117117
lint:
118118
docker:
119-
- image: rust:1.75
119+
- image: rust:1.78
120120
steps:
121121
- checkout
122122
- run:
@@ -127,8 +127,8 @@ jobs:
127127
command: cargo update
128128
- restore_cache:
129129
keys:
130-
- cargocache-v2-lint-rust:1.75-{{ checksum "Cargo.lock" }}
131-
- cargocache-v2-lint-rust:1.75-
130+
- cargocache-v2-lint-rust:1.78-{{ checksum "Cargo.lock" }}
131+
- cargocache-v2-lint-rust:1.78-
132132
- run:
133133
name: Add rustfmt component
134134
command: rustup component add rustfmt
@@ -147,7 +147,7 @@ jobs:
147147
- target/debug/.fingerprint
148148
- target/debug/build
149149
- target/debug/deps
150-
key: cargocache-v2-lint-rust:1.75-{{ checksum "Cargo.lock" }}
150+
key: cargocache-v2-lint-rust:1.78-{{ checksum "Cargo.lock" }}
151151

152152
coverage:
153153
# https://circleci.com/developer/images?imageType=machine

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [v2.2.1](https://github.com/CosmWasm/cw-multi-test/tree/v2.2.1) (2025-01-17)
4+
5+
[Full Changelog](https://github.com/CosmWasm/cw-multi-test/compare/v2.2.0...v2.2.1)
6+
7+
**Key highlights:**
8+
9+
- Dependency upgrade (see [\#228](https://github.com/CosmWasm/cw-multi-test/pull/228) for details).
10+
11+
**Merged pull requests:**
12+
13+
- Upgraded non-cw dependencies [\#228](https://github.com/CosmWasm/cw-multi-test/pull/228) ([DariuszDepta](https://github.com/DariuszDepta))
14+
315
## [v2.2.0](https://github.com/CosmWasm/cw-multi-test/tree/v2.2.0) (2024-11-07)
416

517
[Full Changelog](https://github.com/CosmWasm/cw-multi-test/compare/v2.1.1...v2.2.0)

0 commit comments

Comments
 (0)