Skip to content

Commit 0f2f891

Browse files
committed
chore(build): bump MSRV to 1.78
1 parent 693945f commit 0f2f891

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/large-scope.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
rust: [1.74.0, beta, nightly]
15+
rust: [1.78.0, beta, nightly]
1616

1717
steps:
1818
- name: Rust install

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "tmux-backup"
33
version = "0.5.8"
44
edition = "2021"
5-
rust-version = "1.74.0"
5+
rust-version = "1.78.0"
66
description = "A backup & restore solution for Tmux sessions."
77
readme = "README.md"
88

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
[![crate](https://img.shields.io/crates/v/tmux-backup.svg)](https://crates.io/crates/tmux-backup)
44
[![documentation](https://docs.rs/tmux-backup/badge.svg)](https://docs.rs/tmux-backup)
5-
[![minimum rustc 1.74](https://img.shields.io/badge/rustc-1.74+-red.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
5+
[![minimum rustc 1.78](https://img.shields.io/badge/rustc-1.78+-red.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
66
[![rust 2021 edition](https://img.shields.io/badge/edition-2021-blue.svg)](https://doc.rust-lang.org/edition-guide/rust-2021/index.html)
77
[![build status](https://github.com/graelo/tmux-backup/actions/workflows/essentials.yml/badge.svg)](https://github.com/graelo/tmux-backup/actions/workflows/essentials.yml)
88

99
<!-- cargo-sync-readme start -->
1010

1111
A backup & restore solution for Tmux sessions.
1212

13-
Version requirement: _rustc 1.74+_
13+
Version requirement: _rustc 1.78+_
1414

1515
## Features
1616

@@ -27,7 +27,7 @@ Version requirement: _rustc 1.74+_
2727
- the lastest backup per week of the past 4 weeks (max 3 backups - exclude the past week),
2828
- the lastest backup per month of this year (max 11 backups - exclude the past month).
2929
- Because you decide where backups are stored, you can use both strategies, combining the
30-
benefits of high-frequency backups and on demand backups like in tmux-resurrect.
30+
benefits of high-frequency backups and on demand backups like in tmux-resurrect.
3131

3232
## Getting started
3333

ci/test_full.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
CRATE=tmux-backup
6-
MSRV=1.74
6+
MSRV=1.78
77

88
get_rust_version() {
99
local array=($(rustc --version));
@@ -28,7 +28,7 @@ if ! check_version $MSRV ; then
2828
fi
2929

3030
FEATURES=()
31-
# check_version 1.74 && FEATURES+=(libm)
31+
# check_version 1.78 && FEATURES+=(libm)
3232
echo "Testing supported features: ${FEATURES[*]}"
3333

3434
set -x

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
//! A backup & restore solution for Tmux sessions.
44
//!
5-
//! Version requirement: _rustc 1.74+_
5+
//! Version requirement: _rustc 1.78+_
66
//!
77
//! ## Features
88
//!

0 commit comments

Comments
 (0)