Skip to content

Commit

Permalink
Update the MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
breard-r committed Dec 9, 2023
1 parent 4227295 commit f8fdae7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ jobs:
strategy:
matrix:
rust:
- 1.60.0
- 1.61.0
- 1.62.1
- 1.63.0
- 1.64.0
- 1.65.0
- 1.66.1
- 1.67.1
- 1.68.2
- 1.69.0
- 1.70.0
- 1.71.1
- 1.72.1
- 1.73.0
- 1.74.1
- stable
- beta
- nightly
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [Unreleased] - ReleaseDate

### Changed
- The minimal required Rust version is now Rust 1.66.


## [0.16.0] - 2023-04-22

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "libreauth"
version = "0.16.0"
authors = ["Rodolphe Breard <[email protected]>"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.66"
description = "Collection of tools for user authentication."
documentation = "https://docs.rs/libreauth/"
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 @@ -80,7 +80,7 @@ features = ["key", "oath", "pass"]

## Using outside Rust

In order to build LibreAuth, you will need the [Rust](https://www.rust-lang.org/) compiler and its package manager, Cargo. The minimal required Rust version is 1.60, although it is recommended to use the latest stable one.
In order to build LibreAuth, you will need the [Rust](https://www.rust-lang.org/) compiler and its package manager, Cargo. The minimum supported Rust version (MSRV) is 1.66, although it is recommended to use the latest stable one.

```ShellSession
$ make
Expand Down

0 comments on commit f8fdae7

Please sign in to comment.