]> OzVa Git service - ozva-cloud/commitdiff
chore(release): version v0.17.0
authorsigoden <sigoden@gmail.com>
Wed, 15 Jun 2022 12:31:53 +0000 (20:31 +0800)
committersigoden <sigoden@gmail.com>
Wed, 15 Jun 2022 12:31:53 +0000 (20:31 +0800)
CHANGELOG.md
Cargo.lock
Cargo.toml
README.md

index 70042cd22042f7416769f0046df639edbb2cd459..11e9370f693915ab9ca47f5a7b2d1a9148c18a3f 100644 (file)
@@ -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
index 51567f5e87c1a279c8a5f45e23912472a1f42a85..7738f2372cba70a837719aa22f094dbaf1d5167f 100644 (file)
@@ -550,7 +550,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
 
 [[package]]
 name = "duf"
-version = "0.16.0"
+version = "0.17.0"
 dependencies = [
  "assert_cmd",
  "assert_fs",
index e7f28014acda9401564f2719a6b4e9a322122e85..6d1665149ab88420ba1f25813f7ec4af216fa934 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "duf"
-version = "0.16.0"
+version = "0.17.0"
 edition = "2021"
 authors = ["sigoden <sigoden@gmail.com>"]
 description = "Duf is a simple file server."
index a23165ba786a5d93834986f9a595ff76bdfbeaac..481d853be30b121c86718595ff8973fcbb134215 100644 (file)
--- 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>    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 <address>        Specify bind address [default: 0.0.0.0]
+    -b, --bind <address>...     Specify bind address
         --cors                  Enable CORS, sets `Access-Control-Allow-Origin: *`
     -h, --help                  Print help information
     -p, --port <port>           Specify port to listen on [default: 5000]