Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

(MINOR) Bump MSRV to 1.61 #142

Merged
merged 2 commits into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 1 addition & 34 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
rust_version: [stable]
rust_version: [1.61.0, stable]

steps:
- name: Checkout repository
Expand Down Expand Up @@ -45,39 +45,6 @@ jobs:
fail_ci_if_error: true
verbose: true

tests-msrv:
name: Unit tests
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
rust_version: [1.59.0]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust_version }}
override: true

- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v1

# Note that we do not run code coverage because
# it was not stabilized as of 1.59.0.

- name: Run self tests
uses: actions-rs/cargo@v1
with:
command: test
# args: --all-targets --all-features --workspace (waiting on bug fix)
args: --all-features --workspace

wasm_tests:
name: Wasm tests
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ We welcome contributions to this project. For information on contributing, prov

## Requirements

The SDK requires **Rust version 1.59.0** or newer.
The SDK requires **Rust version 1.61.0** or newer.

### Supported platforms

Expand Down
2 changes: 1 addition & 1 deletion make_test_images/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.14.1"
authors = ["Gavin Peacock <gpeacock@adobe.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
rust-version = "1.59.0"
rust-version = "1.61.0"

[dependencies]
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ readme = "../README.md"
keywords = ["xmp", "metadata"]
categories = ["api-bindings"]
edition = "2018"
rust-version = "1.59.0"
rust-version = "1.61.0"
exclude = ["tests/fixtures"]

[package.metadata.docs.rs]
Expand Down