diff --git a/CHANGELOG.md b/CHANGELOG.md index accc64a..70042cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. +## [0.16.0] - 2022-06-12 + +### Features + +- Implement head method ([#33](https://github.com/sigoden/duf/issues/33)) +- Display upload speed and time left ([#34](https://github.com/sigoden/duf/issues/34)) +- Support tls-key in pkcs#8 format ([#35](https://github.com/sigoden/duf/issues/35)) +- Options method return status 200 + +### Testing + +- Add integration tests ([#36](https://github.com/sigoden/duf/issues/36)) + ## [0.15.1] - 2022-06-11 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index cd2772a..8c60eaa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -551,7 +551,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "duf" -version = "0.15.1" +version = "0.16.0" dependencies = [ "assert_cmd", "assert_fs", @@ -2284,9 +2284,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" [[package]] name = "tracing" -version = "0.1.34" +version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09" +checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160" dependencies = [ "cfg-if", "pin-project-lite", @@ -2295,11 +2295,11 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f" +checksum = "7709595b8878a4965ce5e87ebf880a7d39c9afc6837721b21a5a816a8117d921" dependencies = [ - "lazy_static", + "once_cell", ] [[package]] @@ -2376,9 +2376,9 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "uuid" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6d5d669b51467dcf7b2f1a796ce0f955f05f01cafda6c19d6e95f730df29238" +checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" dependencies = [ "getrandom 0.2.6", "rand 0.8.5", diff --git a/Cargo.toml b/Cargo.toml index ada6344..c845dbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "duf" -version = "0.15.1" +version = "0.16.0" edition = "2021" authors = ["sigoden "] description = "Duf is a simple file server."