Skip to content

Commit

Permalink
chore: bump MSRV to 1.70
Browse files Browse the repository at this point in the history
  • Loading branch information
graelo committed Sep 1, 2023
1 parent 1c7c930 commit 6000913
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/large-scope.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [1.64.0, beta, nightly]
rust: [1.70.0, beta, nightly]

steps:
- name: Rust install
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![crate](https://img.shields.io/crates/v/tmux-copyrat.svg)](https://crates.io/crates/tmux-copyrat)
[![documentation](https://docs.rs/tmux-copyrat/badge.svg)](https://docs.rs/tmux-copyrat)
[![minimum rustc 1.64](https://img.shields.io/badge/rustc-1.64+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
[![minimum rustc 1.70](https://img.shields.io/badge/rustc-1.70+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
[![edition 2021](https://img.shields.io/badge/edition-2021-blue.svg)](https://doc.rust-lang.org/edition-guide/rust-2021/index.html)
[![tmux 3.x](https://img.shields.io/badge/tmux-3.0+-blue.svg)](https://tmux.github.io)
[![build status](https://github.com/graelo/tmux-copyrat/actions/workflows/essentials.yml/badge.svg)](https://github.com/graelo/tmux-copyrat/actions)
Expand All @@ -23,7 +23,7 @@ The name is a tribute to [tmux-copyrat], which I used for many years for that
same functionality. For this Rust implementation, I got inspired by
[tmux-thumbs], and I even borrowed some parts of his regex tests.

Version requirement: _rustc 1.64+_
Version requirement: _rustc 1.70+_

## Demo

Expand Down
2 changes: 1 addition & 1 deletion ci/rustup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
set -ex

ci=$(dirname $0)
for version in 1.64.0 stable beta nightly; do
for version in 1.70.0 stable beta nightly; do
rustup run "$version" "$ci/test_full.sh"
done
4 changes: 2 additions & 2 deletions ci/test_full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

CRATE=tmux-copyrat
MSRV=1.64
MSRV=1.70

get_rust_version() {
local array=($(rustc --version));
Expand All @@ -28,7 +28,7 @@ if ! check_version $MSRV ; then
fi

FEATURES=()
# check_version 1.64 && FEATURES+=(libm)
# check_version 1.70 && FEATURES+=(libm)
echo "Testing supported features: ${FEATURES[*]}"

set -x
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//! same functionality. For this Rust implementation, I got inspired by
//! [tmux-thumbs], and I even borrowed some parts of his regex tests.
//!
//! Version requirement: _rustc 1.64+_
//! Version requirement: _rustc 1.70+_
//!
//! ## Demo
//!
Expand Down

0 comments on commit 6000913

Please sign in to comment.