Skip to content

Commit 1cf7390

Browse files
committed
Bump 0.2.2
1 parent e746d27 commit 1cf7390

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@ on:
1010
jobs:
1111
test:
1212
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
rust: ['1.91', '1.92']
1316
steps:
1417
- name: Checkout
1518
uses: actions/checkout@v4
1619
- name: Set up Rust
17-
uses: dtolnay/rust-toolchain@stable
20+
uses: dtolnay/rust-toolchain@master
1821
with:
19-
components: rustfmt, clippy
22+
toolchain: ${{ matrix.rust }}
23+
components: rustfmt, clippy, rust-src
2024
- name: Install solc
2125
run: |
2226
SOLC_VERSION=0.8.26

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ members = [
66
resolver = "2"
77

88
[workspace.package]
9-
version = "0.2.1"
9+
version = "0.2.2"
1010
edition = "2024"
1111
license = "MIT"
1212
repository = "https://github.com/paritytech/cargo-pvm-contract"

0 commit comments

Comments
 (0)