From 0eaf5475efd67e34aac902a6ca9983221c05ef31 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sat, 2 Nov 2019 15:24:58 +0000 Subject: [PATCH] Start v1.50.1-DEV development --- RELEASE.md | 2 +- VERSION | 2 +- docs/content/changelog.md | 13 ++++++++++++- fs/version.go | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 5683ffae5..3f5e4c5db 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -89,7 +89,7 @@ Now * make TAG=${NEW_TAG} upload_github * NB this overwrites the current beta so we need to do this * git co master - * make LAST_TAG=${NEW_TAG} startdev + * make VERSION=${NEW_TAG} startdev * # cherry pick the changes to the changelog and VERSION * git checkout ${BASE_TAG}-fixes VERSION docs/content/changelog.md * git commit --amend diff --git a/VERSION b/VERSION index b742c38a6..0bb2bc8f5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v1.50.0 +v1.50.1 diff --git a/docs/content/changelog.md b/docs/content/changelog.md index 2da178ae3..ea5f1fb7b 100644 --- a/docs/content/changelog.md +++ b/docs/content/changelog.md @@ -1,11 +1,22 @@ --- title: "Documentation" description: "Rclone Changelog" -date: "2019-10-26" +date: "2019-11-02" --- # Changelog +## v1.50.1 - 2019-11-02 + +* Bug Fixes + * hash: Fix accidentally changed hash names for `DropboxHash` and `CRC-32` (Nick Craig-Wood) + * fshttp: Fix error reporting on tpslimit token bucket errors (Nick Craig-Wood) + * fshttp: Don't print token bucket errors on context cancelled (Nick Craig-Wood) +* Local + * Fix listings of . on Windows (Nick Craig-Wood) +* Onedrive + * Fix DirMove/Move after Onedrive change (Xiaoxing Ye) + ## v1.50.0 - 2019-10-26 * New backends diff --git a/fs/version.go b/fs/version.go index cc6cd31a7..d1e9ba147 100644 --- a/fs/version.go +++ b/fs/version.go @@ -1,4 +1,4 @@ package fs // Version of rclone -var Version = "v1.50.0-DEV" +var Version = "v1.50.1-DEV"