From 1204ee2d8e8f8bc75d106fade759f09b071dcfdd Mon Sep 17 00:00:00 2001 From: Owen Walpole Date: Fri, 21 Dec 2018 23:28:40 -0600 Subject: [PATCH] Version bump --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 4 ---- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64930c6..2edc035 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.0] - 2018-12-21 +### Changed +- Allow invalid UTF-8 in OS temporary directory + ## [0.1.0] - 2018-12-19 ### Added - Initial release diff --git a/Cargo.toml b/Cargo.toml index 757c94b..cfc7f8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mktemp-rs" -version = "0.1.0" +version = "0.2.0" authors = ["Owen Walpole "] description = "A thin wrapper around libc's mkstemps and mkdtemp" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index a06e79e..172b110 100644 --- a/README.md +++ b/README.md @@ -39,10 +39,6 @@ fn readme() { ### Tests -[`dir_invalid_utf8`](tests/dir_invalid_utf8.rs) tests that TempDir::new() panics when the OS temporary directory path is not valid UTF-8. - -[`file_invalid_utf8`](tests/file_invalid_utf8.rs) tests that TempFile::new() panics when the OS temporary directory path is not valid UTF-8. - [`readme`](tests/readme.rs) tests the example in this readme. [`temp_dir`](tests/temp_dir.rs) tests various TempDir functions.