]> OzVa Git service - ozva-cloud/commitdiff
chore(release): version v0.20.0
authorsigoden <sigoden@gmail.com>
Mon, 20 Jun 2022 23:52:45 +0000 (07:52 +0800)
committersigoden <sigoden@gmail.com>
Mon, 20 Jun 2022 23:52:45 +0000 (07:52 +0800)
CHANGELOG.md
Cargo.lock
Cargo.toml
README.md

index dd92f4c24328920b0073359165052c9d0a00ef5d..66cbdbac7cac64e258b0ab5ba3d10b85a3a0abef 100644 (file)
@@ -2,7 +2,18 @@
 
 All notable changes to this project will be documented in this file.
 
-## [0.19.0] - 2022-06-19
+## [0.20.0] - 2022-06-20
+
+### Bug Fixes
+
+- DecodeURI searching string ([#61](https://github.com/sigoden/dufs/issues/61))
+
+### Features
+
+- Added basic auth ([#60](https://github.com/sigoden/dufs/issues/60))
+- Add option --allow-search ([#62](https://github.com/sigoden/dufs/issues/62))
+
+## [0.19.0-rc1] - 2022-06-19
 
 ### Features
 
index f60d61940d789d2c5502c35b3f9515628ac650fe..556ff1eb296c64f4838b96fa2281f1cd39d5a9a9 100644 (file)
@@ -572,7 +572,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
 
 [[package]]
 name = "dufs"
-version = "0.19.0"
+version = "0.20.0"
 dependencies = [
  "assert_cmd",
  "assert_fs",
index 149fc84440632042a8452cde8cbd414e26ab7b96..5d27ad107a6bf0ca3f64d926b448447442343e57 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "dufs"
-version = "0.19.0"
+version = "0.20.0"
 edition = "2021"
 authors = ["sigoden <sigoden@gmail.com>"]
 description = "Dufs is a distinctive utility file server"
index 9043ed57d7bebd2f4ca5447786c18c2881f47ec6..04798e1db83935ac4d43c85c6e4e9a86cfa6ee12 100644 (file)
--- a/README.md
+++ b/README.md
@@ -158,7 +158,7 @@ curl -X DELETE http://127.0.0.1:5000/path-to-file
 
 ## Access Control
 
-Dufs implements path level access control through http authentication.
+Dufs supports path level access control. You can control who can do what on which path with `--auth`/`-a`.
 
 ```
 dufs -a <path>@<readwrite>[@<readonly>]
@@ -168,7 +168,7 @@ dufs -a <path>@<readwrite>[@<readonly>]
 - `<readwrite>`: Account with readwrite permission, required
 - `<readonly>`: Account with readonly permission, optional
 
-> `*` as `<readonly>` means `<path>` is public, everyone can access/download it.
+> `<readonly>` can be `*` means `<path>` is public, everyone can access/download it.
 
 For example: