Skip to content

Commit

Permalink
chore: update MSRV to 1.64.0
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
sonro committed Aug 8, 2023
1 parent e73770e commit f6c0597
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [stable, beta, nightly, 1.56.1]
rust: [stable, beta, nightly, 1.64.0]
steps:
- uses: actions/checkout@v3

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

### Changed

- MSRV updated to 1.64.0

## [0.15.7] - 2023-03-22

### Added
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 @@

[![Crates.io](https://img.shields.io/crates/v/dotenvy.svg)](https://crates.io/crates/dotenvy)
[![msrv
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)
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)
[![ci](https://github.com/allan2/dotenvy/actions/workflows/ci.yml/badge.svg)](https://github.com/allan2/dotenvy/actions/workflows/ci.yml)
[![docs](https://img.shields.io/docsrs/dotenvy?logo=docs.rs)](https://docs.rs/dotenvy/)

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

## Minimum supported Rust version

Currently: **1.56.1**
Currently: **1.64.0**

We aim to support the latest 8 rustc versions - approximately 1 year. Increasing
MSRV is _not_ considered a semver-breaking change.
Expand Down
2 changes: 1 addition & 1 deletion dotenv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ keywords = ["dotenv", "env", "environment", "settings", "config"]
license = "MIT"
repository = "https://github.com/allan2/dotenvy"
edition = "2018"
rust-version = "1.56.1"
rust-version = "1.63.0"

[[bin]]
name = "dotenvy"
Expand Down
4 changes: 2 additions & 2 deletions dotenv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Crates.io](https://img.shields.io/crates/v/dotenvy.svg)](https://crates.io/crates/dotenvy)
[![msrv
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)
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)
[![ci](https://github.com/allan2/dotenvy/actions/workflows/ci.yml/badge.svg)](https://github.com/allan2/dotenvy/actions/workflows/ci.yml)
[![docs](https://img.shields.io/docsrs/dotenvy?logo=docs.rs)](https://docs.rs/dotenvy/)

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

## Minimum supported Rust version

Currently: **1.56.1**
Currently: **1.64.0**

We aim to support the latest 8 rustc versions - approximately 1 year. Increasing
MSRV is _not_ considered a semver-breaking change.
Expand Down
2 changes: 1 addition & 1 deletion dotenv_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ homepage = "https://github.com/allan2/dotenvy"
repository = "https://github.com/allan2/dotenvy"
description = "A macro for compile time dotenv inspection"
edition = "2018"
rust-version = "1.56.1"
rust-version = "1.63.0"

[dependencies]
proc-macro2 = "1"
Expand Down

0 comments on commit f6c0597

Please sign in to comment.