diff --git a/CHANGELOG.md b/CHANGELOG.md index 70042cd..11e9370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [0.17.0] - 2022-06-15 + +### Bug Fixes + +- Webdav propfind dir with slash ([#42](https://github.com/sigoden/duf/issues/42)) + +### Features + +- Listen both ipv4 and ipv6 by default ([#40](https://github.com/sigoden/duf/issues/40)) + +### Refactor + +- Trival changes ([#41](https://github.com/sigoden/duf/issues/41)) + ## [0.16.0] - 2022-06-12 ### Features diff --git a/Cargo.lock b/Cargo.lock index 51567f5..7738f23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -550,7 +550,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "duf" -version = "0.16.0" +version = "0.17.0" dependencies = [ "assert_cmd", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index e7f2801..6d16651 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "duf" -version = "0.16.0" +version = "0.17.0" edition = "2021" authors = ["sigoden "] description = "Duf is a simple file server." diff --git a/README.md b/README.md index a23165b..481d853 100644 --- a/README.md +++ b/README.md @@ -40,10 +40,10 @@ Download from [Github Releases](https://github.com/sigoden/duf/releases), unzip ## CLI ``` -Duf is a simple file server. +Duf is a simple file server. - https://github.com/sigoden/duf USAGE: - duf [OPTIONS] [path] + duf [OPTIONS] [--] [path] ARGS: Path to a root directory for serving files [default: .] @@ -55,7 +55,7 @@ OPTIONS: --allow-delete Allow delete files/folders --allow-symlink Allow symlink to files/folders outside root directory --allow-upload Allow upload files/folders - -b, --bind
Specify bind address [default: 0.0.0.0] + -b, --bind
... Specify bind address --cors Enable CORS, sets `Access-Control-Allow-Origin: *` -h, --help Print help information -p, --port Specify port to listen on [default: 5000]