diff --git a/actix-files/src/named.rs b/actix-files/src/named.rs index c506c02f2..41a7cf1f9 100644 --- a/actix-files/src/named.rs +++ b/actix-files/src/named.rs @@ -66,6 +66,7 @@ impl NamedFile { /// let mut file = File::create("foo.txt")?; /// file.write_all(b"Hello, world!")?; /// let named_file = NamedFile::from_file(file, "bar.txt")?; + /// # std::fs::remove_file("foo.txt"); /// Ok(()) /// } /// ``` diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 69abcfba6..872a481d8 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [0.1.5] - 2019-05-xx +## [0.1.5] - 2019-05-04 ### Fixed diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index 9d044c640..bcc9b456b 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-http" -version = "0.1.4" +version = "0.1.5" authors = ["Nikolay Kim "] description = "Actix http primitives" readme = "README.md"