Skip to content

Commit ce5bfde

Browse files
authored
Update MSRV to 1.64.0 (#81)
- In line with the project's Minimum Supported Rust Version policy. - Current rust version on 2023-08-08 is 1.71.0. - 8 versions ago is 1.63.0. - Bumped by 1 version to use latest version of clap.
1 parent e330110 commit ce5bfde

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
rust: [stable, beta, nightly, 1.56.1]
17+
rust: [stable, beta, nightly, 1.64.0]
1818
steps:
1919
- uses: actions/checkout@v3
2020

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Changed
11+
12+
- MSRV updated to 1.64.0
13+
814
## [0.15.7] - 2023-03-22
915

1016
### Added
@@ -114,7 +120,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
114120
- Renamed dotenv_codegen_impl to dotenv_codegen_implementation since we no longer own the original crate.
115121
- Update code to 2018 edition
116122

117-
[Unreleased]: https://github.com/allan2/dotenvy/compare/v0.15.6...HEAD
123+
[Unreleased]: https://github.com/allan2/dotenvy/compare/v0.15.7...HEAD
124+
[0.15.7]: https://github.com/allan2/dotenvy/releases/tag/v0.15.7
118125
[0.15.6]: https://github.com/allan2/dotenvy/releases/tag/v0.15.6
119126
[0.15.5]: https://github.com/allan2/dotenvy/releases/tag/v0.15.5
120127
[0.15.4]: https://github.com/allan2/dotenvy/releases/tag/v0.15.4

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/dotenvy.svg)](https://crates.io/crates/dotenvy)
44
[![msrv
5-
1.56.1](https://img.shields.io/badge/msrv-1.56.1-dea584.svg?logo=rust)](https://github.com/rust-lang/rust/releases/tag/1.56.1)
5+
1.64.0](https://img.shields.io/badge/msrv-1.64.0-dea584.svg?logo=rust)](https://github.com/rust-lang/rust/releases/tag/1.64.0)
66
[![ci](https://github.com/allan2/dotenvy/actions/workflows/ci.yml/badge.svg)](https://github.com/allan2/dotenvy/actions/workflows/ci.yml)
77
[![docs](https://img.shields.io/docsrs/dotenvy?logo=docs.rs)](https://docs.rs/dotenvy/)
88

@@ -42,7 +42,7 @@ The `dotenv!` macro provided by `dotenvy_macro` crate can be used.
4242

4343
## Minimum supported Rust version
4444

45-
Currently: **1.56.1**
45+
Currently: **1.64.0**
4646

4747
We aim to support the latest 8 rustc versions - approximately 1 year. Increasing
4848
MSRV is _not_ considered a semver-breaking change.

dotenv/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ keywords = ["dotenv", "env", "environment", "settings", "config"]
1818
license = "MIT"
1919
repository = "https://github.com/allan2/dotenvy"
2020
edition = "2018"
21-
rust-version = "1.56.1"
21+
rust-version = "1.64.0"
2222

2323
[[bin]]
2424
name = "dotenvy"

dotenv/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/dotenvy.svg)](https://crates.io/crates/dotenvy)
44
[![msrv
5-
1.56.1](https://img.shields.io/badge/msrv-1.56.1-dea584.svg?logo=rust)](https://github.com/rust-lang/rust/releases/tag/1.56.1)
5+
1.64.0](https://img.shields.io/badge/msrv-1.64.0-dea584.svg?logo=rust)](https://github.com/rust-lang/rust/releases/tag/1.64.0)
66
[![ci](https://github.com/allan2/dotenvy/actions/workflows/ci.yml/badge.svg)](https://github.com/allan2/dotenvy/actions/workflows/ci.yml)
77
[![docs](https://img.shields.io/docsrs/dotenvy?logo=docs.rs)](https://docs.rs/dotenvy/)
88

@@ -47,7 +47,7 @@ Warning: there is an outstanding issue with rust-analyzer ([rust-analyzer #9606]
4747

4848
## Minimum supported Rust version
4949

50-
Currently: **1.56.1**
50+
Currently: **1.64.0**
5151

5252
We aim to support the latest 8 rustc versions - approximately 1 year. Increasing
5353
MSRV is _not_ considered a semver-breaking change.

dotenv_codegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ homepage = "https://github.com/allan2/dotenvy"
1919
repository = "https://github.com/allan2/dotenvy"
2020
description = "A macro for compile time dotenv inspection"
2121
edition = "2018"
22-
rust-version = "1.56.1"
22+
rust-version = "1.64.0"
2323

2424
[dependencies]
2525
proc-macro2 = "1"

0 commit comments

Comments
 (0)