Skip to content

Commit

Permalink
Release 0.15.5 - MSRV set to 1.58.1
Browse files Browse the repository at this point in the history
Minimum Supported Rust Version is now 1.58.1. [(PR #18)](#21) by [rillian](https://github.com/rillian)
  • Loading branch information
Allan Zhang committed Sep 19, 2022
1 parent 4ee363c commit d369146
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,22 @@ 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).

## [0.15.5] - 2022-09-19

### Added

- Minimum Supported Rust Version is now 1.58.1. [(PR #18)](https://github.com/allan2/dotenvy/pull/21) by [rillian](https://github.com/rillian)

## [0.15.4] - 2022-09-19

### Changed
- Another fix for multiline support [(PR #18)](https://github.com/allan2/dotenvy/pull/18). Thanks [BlackDex](https://github.com/BlackDex) and [LeoniePhiline](https://github.com/LeoniePhiline)

- Another fix for multiline support [(PR #18)](https://github.com/allan2/dotenvy/pull/18). Thanks [BlackDex](https://github.com/BlackDex) and [LeoniePhiline](https://github.com/LeoniePhiline)

## [0.15.3] - 2022-08-29

### Changed

- Fix comments in multiline input [(PR #16)](https://github.com/allan2/dotenvy/pull/16) by [domodwyer](https://github.com/domodwyer)

## [0.15.2] - 2022-08-22
Expand Down
3 changes: 2 additions & 1 deletion dotenv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dotenvy"
version = "0.15.4"
version = "0.15.5"
authors = [
"Noemi Lapresta <noemi.lapresta@gmail.com>",
"Craig Hills <chills@gmail.com>",
Expand All @@ -18,6 +18,7 @@ keywords = ["dotenv", "env", "environment", "settings", "config"]
license = "MIT"
repository = "https://github.com/allan2/dotenvy"
edition = "2018"
rust = "1.58.1"

[[bin]]
name = "dotenvy"
Expand Down
2 changes: 2 additions & 0 deletions dotenv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ This crate is the suggested alternative for `dotenv` in security advisory [RUSTS

This library loads environment variables from a _.env_ file. This is convenient for dev environments.

The Minimum Supported Rust Version (MSRV) is 1.58.1.

## Components

1. [`dotenvy`](https://crates.io/crates/dotenvy) crate - A well-maintained fork of the `dotenv` crate.
Expand Down
1 change: 1 addition & 0 deletions dotenv_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ homepage = "https://github.com/allan2/dotenvy"
repository = "https://github.com/allan2/dotenvy"
description = "A macro for compile time dotenv inspection"
edition = "2018"
rust = "1.58.1"

[dependencies]
dotenvy_codegen_impl = { version = "0.15", path = "../dotenv_codegen_impl" }
Expand Down
1 change: 1 addition & 0 deletions dotenv_codegen_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ homepage = "https://github.com/allan2/dotenvy"
repository = "https://github.com/allan2/dotenvy"
description = "Internal implementation for dotenvy_codegen"
edition = "2018"
rust = "1.58.1"

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

0 comments on commit d369146

Please sign in to comment.