diff --git a/RELEASE.md b/RELEASE.md index ecd9c2535..0d8414721 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -62,8 +62,9 @@ point release is necessary. First make the release branch. If this is a second point release then this will be done already. - * BASE_TAG=${BASE_TAG} # eg v1.49 - * NEW_TAG=${BASE_TAG}.Y # eg v1.49.1 + * 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 Now @@ -75,9 +76,10 @@ Now * edit docs/content/changelog.md * make TAG=${NEW_TAG} doc * git commit -a -v -m "Version ${NEW_TAG}" - * git tag -d -${NEW_TAG} + * git tag -d ${NEW_TAG} * git tag -s -m "Version ${NEW_TAG}" ${NEW_TAG} * git push --tags -u origin ${BASE_TAG}-fixes + * Wait for builds to complete * make BRANCH_PATH= TAG=${NEW_TAG} fetch_binaries * make TAG=${NEW_TAG} tarball * make TAG=${NEW_TAG} sign_upload diff --git a/docs/content/changelog.md b/docs/content/changelog.md index c34473361..3b9c96548 100644 --- a/docs/content/changelog.md +++ b/docs/content/changelog.md @@ -1,11 +1,23 @@ --- title: "Documentation" description: "Rclone Changelog" -date: "2019-08-28" +date: "2019-09-08" --- # Changelog +## v1.49.2 - 2019-09-08 + +* New Features + * build: Add Docker workflow support (Alfonso Montero) +* Bug Fixes + * accounting: Fix locking in Transfer to avoid deadlock with --progress (Nick Craig-Wood) + * docs: Fix template argument for mktemp in install.sh (Cnly) + * operations: Fix -u/--update with google photos / files of unknown size (Nick Craig-Wood) + * rc: Fix docs for config/create /update /password (Nick Craig-Wood) +* Google Cloud Storage + * Fix need for elevated permissions on SetModTime (Nick Craig-Wood) + ## v1.49.1 - 2019-08-28 Point release to fix config bug and google photos backend. diff --git a/fs/version.go b/fs/version.go index 522d1ed23..bb12ce733 100644 --- a/fs/version.go +++ b/fs/version.go @@ -1,4 +1,4 @@ package fs // Version of rclone -var Version = "v1.49.1-DEV" +var Version = "v1.49.2-DEV"