From a1382a03aa0908087446910768ccb151e58bcced Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 10 Jun 2020 16:49:04 +0100 Subject: [PATCH] Start v1.52.1-DEV development --- RELEASE.md | 16 ++++++++-------- VERSION | 2 +- docs/content/changelog.md | 33 +++++++++++++++++++++++++++++++++ fs/version.go | 2 +- 4 files changed, 43 insertions(+), 10 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 78d7622f3..c67cd2bf9 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -63,14 +63,14 @@ If rclone needs a point release due to some horrendous bug: First make the release branch. If this is a second point release then this will be done already. - * BASE_TAG=v1.XX # eg v1.49 - * NEW_TAG=${BASE_TAG}.Y # eg v1.49.1 - * echo $BASE_TAG $NEW_TAG # v1.49 v1.49.1 - * git branch ${BASE_TAG} ${BASE_TAG}-fixes + * BASE_TAG=v1.XX # eg v1.52 + * NEW_TAG=${BASE_TAG}.Y # eg v1.52.1 + * echo $BASE_TAG $NEW_TAG # v1.52 v1.52.1 + * git branch ${BASE_TAG} ${BASE_TAG}-stable Now - * git co ${BASE_TAG}-fixes + * git co ${BASE_TAG}-stable * git cherry-pick any fixes * Test (see above) * make NEXT_VERSION=${NEW_TAG} tag @@ -79,7 +79,7 @@ Now * git commit -a -v -m "Version ${NEW_TAG}" * git tag -d ${NEW_TAG} * git tag -s -m "Version ${NEW_TAG}" ${NEW_TAG} - * git push --tags -u origin ${BASE_TAG}-fixes + * git push --tags -u origin ${BASE_TAG}-stable * Wait for builds to complete * make BRANCH_PATH= TAG=${NEW_TAG} fetch_binaries * make TAG=${NEW_TAG} tarball @@ -92,14 +92,14 @@ Now * git co master * 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 checkout ${BASE_TAG}-stable VERSION docs/content/changelog.md * git commit --amend * git push * Announce! ## Making a manual build of docker -The rclone docker image should autobuild on docker hub. If it doesn't +The rclone docker image should autobuild on via GitHub actions. If it doesn't or needs to be updated then rebuild like this. ``` diff --git a/VERSION b/VERSION index 7efefe574..6b99d5516 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v1.52.0 +v1.52.1 diff --git a/docs/content/changelog.md b/docs/content/changelog.md index bbd88af0a..e752e7732 100644 --- a/docs/content/changelog.md +++ b/docs/content/changelog.md @@ -5,6 +5,39 @@ description: "Rclone Changelog" # Changelog +## v1.52.1 - 2020-06-10 + +[See commits](https://github.com/rclone/rclone/compare/v1.52.0...v1.52.1) + +* Bug Fixes + * lib/file: Fix SetSparse on Windows 7 which fixes downloads of files > 250MB (Nick Craig-Wood) + * build + * Update go.mod to go1.14 to enable -mod=vendor build (Nick Craig-Wood) + * Remove quicktest from Dockerfile (Nick Craig-Wood) + * Build Docker images with GitHub actions (Matteo Pietro Dazzi) + * Update Docker build workflows (Nick Craig-Wood) + * Set user_allow_other in /etc/fuse.conf in the Docker image (Nick Craig-Wood) + * Fix xgo build after go1.14 go.mod update (Nick Craig-Wood) + * docs + * Add link to source and modified time to footer of every page (Nick Craig-Wood) + * Remove manually set dates and use git dates instead (Nick Craig-Wood) + * Minor tense, punctuation, brevity and positivity changes for the home page (edwardxml) + * Remove leading slash in page reference in footer when present (Nick Craig-Wood) + * Note commands which need obscured input in the docs (Nick Craig-Wood) + * obscure: Write more help as we are referencing it elsewhere (Nick Craig-Wood) +* VFS + * Fix OS vs Unix path confusion - fixes ChangeNotify on Windows (Nick Craig-Wood) +* Drive + * Fix missing items when listing using --fast-list / ListR (Nick Craig-Wood) +* Putio + * Fix panic on Object.Open (Cenk Alti) +* S3 + * Fix upload of single files into buckets without create permission (Nick Craig-Wood) + * Fix --header-upload (Nick Craig-Wood) +* Tardigrade + * Fix listing bug by upgrading to v1.0.7 + * Set UserAgent to rclone (Caleb Case) + ## v1.52.0 - 2020-05-27 Special thanks to Martin Michlmayr for proof reading and correcting diff --git a/fs/version.go b/fs/version.go index 10fe4630c..363b7d814 100644 --- a/fs/version.go +++ b/fs/version.go @@ -1,4 +1,4 @@ package fs // Version of rclone -var Version = "v1.52.0-DEV" +var Version = "v1.52.1-DEV"