Skip to content

Commit

Permalink
Bump MSRV to 1.70 to reflect dependency updates
Browse files Browse the repository at this point in the history
Implicit dependency upgrades are pushing our MSRV to 1.70, with no
trivial (think `-Zminimal-versions`) way to select lower versions, or
multiple `cargo update -p ... --precise ...` as multiple crates end up
selecting incompatible versions.
  • Loading branch information
MarijnS95 committed Nov 21, 2023
1 parent aad9568 commit dd44b0e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
run: cargo clippy --all --all-targets --all-features --target aarch64-linux-android -- -Dwarnings

check_msrv:
name: Check MSRV (1.64.0)
name: Check MSRV (1.70.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@1.64.0
- uses: dtolnay/rust-toolchain@1.70.0
with:
target: aarch64-linux-android
- name: Check
Expand Down
2 changes: 2 additions & 0 deletions cargo-apk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

- Bump MSRV to 1.70 to reflect dependency updates.

# 0.9.7 (2022-12-12)

- Reimplement default package selection based on `$PWD` or `--manifest-path` by upgrading to [`cargo-subcommand 0.11.0`](https://github.com/rust-mobile/cargo-subcommand/releases/tag/0.11.0). ([#4](https://github.com/rust-mobile/cargo-apk/pull/4))
Expand Down
2 changes: 1 addition & 1 deletion cargo-apk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["android", "ndk", "apk"]
documentation = "https://docs.rs/cargo-apk"
homepage = "https://github.com/rust-mobile/cargo-apk"
repository = "https://github.com/rust-mobile/cargo-apk"
rust-version = "1.64"
rust-version = "1.70"

[dependencies]
anyhow = "1.0.57"
Expand Down
1 change: 1 addition & 0 deletions cargo-apk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Actions Status](https://github.com/rust-mobile/cargo-apk/actions/workflows/rust.yml/badge.svg)](https://github.com/rust-mobile/cargo-apk/actions)
[![Latest version](https://img.shields.io/crates/v/cargo-apk.svg?logo=rust)](https://crates.io/crates/cargo-apk)
[![MSRV](https://img.shields.io/badge/rustc-1.70.0+-ab6000.svg)](https://blog.rust-lang.org/2023/06/01/Rust-1.70.0.html)
[![Documentation](https://docs.rs/cargo-apk/badge.svg)](https://docs.rs/cargo-apk)
[![Lines of code](https://tokei.rs/b1/github/rust-mobile/cargo-apk)](https://github.com/rust-mobile/cargo-apk)
![MIT](https://img.shields.io/badge/License-MIT-green.svg)
Expand Down

0 comments on commit dd44b0e

Please sign in to comment.