Skip to content

Commit

Permalink
Update MSRV to 1.64.0 (#81)
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 9, 2023
1 parent e330110 commit ce5bfde
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
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
9 changes: 8 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- MSRV updated to 1.64.0

## [0.15.7] - 2023-03-22

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

[Unreleased]: https://github.com/allan2/dotenvy/compare/v0.15.6...HEAD
[Unreleased]: https://github.com/allan2/dotenvy/compare/v0.15.7...HEAD
[0.15.7]: https://github.com/allan2/dotenvy/releases/tag/v0.15.7
[0.15.6]: https://github.com/allan2/dotenvy/releases/tag/v0.15.6
[0.15.5]: https://github.com/allan2/dotenvy/releases/tag/v0.15.5
[0.15.4]: https://github.com/allan2/dotenvy/releases/tag/v0.15.4
Expand Down
4 changes: 2 additions & 2 deletions README.md
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
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.64.0"

[[bin]]
name = "dotenvy"
Expand Down
4 changes: 2 additions & 2 deletions dotenv/README.md
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
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.64.0"

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

0 comments on commit ce5bfde

Please sign in to comment.