Skip to content

Commit

Permalink
Increase MSRV to 1.64.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhickman committed Sep 1, 2023
1 parent 7ff39d9 commit f7097f4
Show file tree
Hide file tree
Showing 8 changed files with 1,297 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [beta, stable, 1.60.0]
rust: [beta, stable, 1.64.0]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
# Skip cargo update for MSRV validation build
- run: cargo update
if: ${{ matrix.rust == 'stable' || matrix.rust == 'beta' }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
Expand Down Expand Up @@ -65,6 +68,6 @@ jobs:
run: |
cargo tarpaulin --verbose --timeout 120 --out Xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/target
**/*.rs.bk
.cargo-ok
Cargo.lock
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- The minimum supported rust version is now **1.64.0**.

## [0.4.1] - 2023-06-25

## Fixed
Expand Down
Loading

0 comments on commit f7097f4

Please sign in to comment.