Skip to content

Commit

Permalink
fix: update min rust version to 1.70
Browse files Browse the repository at this point in the history
  • Loading branch information
graelo committed Aug 29, 2023
1 parent 446b808 commit 063a99e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "tmux-backup"
version = "0.5.3"
edition = "2021"
rust-version = "1.64.0"
rust-version = "1.70.0"
description = "A backup & restore solution for Tmux sessions."
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

A backup & restore solution for Tmux sessions.

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

## Features

Expand Down
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-backup
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 @@ -2,7 +2,7 @@

//! A backup & restore solution for Tmux sessions.
//!
//! Version requirement: _rustc 1.64+_
//! Version requirement: _rustc 1.70+_
//!
//! ## Features
//!
Expand Down

0 comments on commit 063a99e

Please sign in to comment.