Skip to content

Commit

Permalink
Bump version to 0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Oct 22, 2021
1 parent bc801e1 commit 32755e7
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
files = Cargo.toml README.md openwrt/aliyundrive-webdav/Makefile openwrt/luci-app-aliyundrive-webdav/Makefile merlin/config.json.js
commit = False
tag = False
current_version = 0.4.7
current_version = 0.4.8
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## 0.4.8

* 支持通过环境变量 `HOST``PORT` 配置监听地址和端口

## 0.4.7

* 发布 musllinux wheel 二进制包至 PyPI
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aliyundrive-webdav"
version = "0.4.7"
version = "0.4.8"
edition = "2018"
description = "WebDAV server for AliyunDrive"
license = "MIT"
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ pip install aliyundrive-webdav
aarch64/arm/mipsel/x86_64/i686 等架构的版本,可以下载后使用 opkg 安装,以 nanopi r4s 为例:

```bash
wget https://github.com/messense/aliyundrive-webdav/releases/download/v0.4.7/aliyundrive-webdav_0.4.7-1_aarch64_generic.ipk
wget https://github.com/messense/aliyundrive-webdav/releases/download/v0.4.7/luci-app-aliyundrive-webdav_0.4.7_all.ipk
wget https://github.com/messense/aliyundrive-webdav/releases/download/v0.4.7/luci-i18n-aliyundrive-webdav-zh-cn_0.4.7-1_all.ipk
opkg install aliyundrive-webdav_0.4.7-1_aarch64_generic.ipk
opkg install luci-app-aliyundrive-webdav_0.4.7_all.ipk
opkg install luci-i18n-aliyundrive-webdav-zh-cn_0.4.7-1_all.ipk
wget https://github.com/messense/aliyundrive-webdav/releases/download/v0.4.8/aliyundrive-webdav_0.4.8-1_aarch64_generic.ipk
wget https://github.com/messense/aliyundrive-webdav/releases/download/v0.4.8/luci-app-aliyundrive-webdav_0.4.8_all.ipk
wget https://github.com/messense/aliyundrive-webdav/releases/download/v0.4.8/luci-i18n-aliyundrive-webdav-zh-cn_0.4.8-1_all.ipk
opkg install aliyundrive-webdav_0.4.8-1_aarch64_generic.ipk
opkg install luci-app-aliyundrive-webdav_0.4.8_all.ipk
opkg install luci-i18n-aliyundrive-webdav-zh-cn_0.4.8-1_all.ipk
```

其它 CPU 架构的路由器可在 [GitHub Releases](https://github.com/messense/aliyundrive-webdav/releases) 页面中查找对应的架构的主程序 ipk 文件下载安装, 常见
Expand Down Expand Up @@ -93,7 +93,7 @@ services:

```bash
$ aliyundrive-webdav --help
aliyundrive-webdav 0.4.7
aliyundrive-webdav 0.4.8
USAGE:
aliyundrive-webdav [FLAGS] [OPTIONS] --refresh-token <refresh-token>
Expand All @@ -109,8 +109,8 @@ OPTIONS:
-U, --auth-user <auth-user> WebDAV authentication username [env: WEBDAV_AUTH_USER=]
--cache-size <cache-size> Directory entries cache size [default: 1000]
--cache-ttl <cache-ttl> Directory entries cache expiration time in seconds [default: 600]
--host <host> Listen host [default: 0.0.0.0]
-p, --port <port> Listen port [default: 8080]
--host <host> Listen host [env: HOST=] [default: 0.0.0.0]
-p, --port <port> Listen port [env: PORT=] [default: 8080]
-S, --read-buffer-size <read-buffer-size>
Read/download buffer size in bytes, defaults to 10MB [default: 10485760]
Expand Down
2 changes: 1 addition & 1 deletion merlin/config.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"md5": "c0bac93db83f87293a1e4efb7aa5a97c",
"module": "aliyundrivewebdav",
"title": "阿里云盘 WebDAV",
"version": "0.4.7"
"version": "0.4.8"
}
2 changes: 1 addition & 1 deletion openwrt/aliyundrive-webdav/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=aliyundrive-webdav
PKG_VERSION:=0.4.7
PKG_VERSION:=0.4.8
PKG_RELEASE:=1

PKG_LICENSE:=MIT
Expand Down
2 changes: 1 addition & 1 deletion openwrt/luci-app-aliyundrive-webdav/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=luci-app-aliyundrive-webdav
PKG_VERSION:=0.4.7
PKG_VERSION:=0.4.8
PKG_RELEASE:=1
PKG_PO_VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)

Expand Down

0 comments on commit 32755e7

Please sign in to comment.