Skip to content

Commit

Permalink
fix: Publish crate::iter::Iter as crate::Iter. (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoniePhiline committed Dec 14, 2022
1 parent a980410 commit 0adc280
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -17,6 +17,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Removed internal `dotenv_codegen_impl` crate and `proc_macro_hack` dependency
- Improved examples by handling errors, rather than using `unwrap`. ([PR #52](https://github.com/allan2/dotenvy/pull/52) by [LeoniePhiline](https://github.com/LeoniePhiline))

### Fixed
- Set `dotenvy::Iter` to public, as it is returned from public functions `dotenv_iter`, `from_filename_iter`, `from_path_iter` and `from_read_iter`. ([PR #51](https://github.com/allan2/dotenvy/pull/51) by [LeoniePhiline](https://github.com/LeoniePhiline))

## [0.15.6] - 2022-10-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion dotenv/src/lib.rs
Expand Up @@ -17,7 +17,7 @@ use std::sync::Once;

pub use crate::errors::*;
use crate::find::Finder;
use crate::iter::Iter;
pub use crate::iter::Iter;

static START: Once = Once::new();

Expand Down

0 comments on commit 0adc280

Please sign in to comment.