From 03a034754a2399212a8dd2cf9276dd42674fc953 Mon Sep 17 00:00:00 2001 From: Artem Yakimenko Date: Thu, 17 Dec 2020 09:55:20 +1100 Subject: [PATCH 1/2] Improve formatting of output from changelog task --- tasks/changelog.rake | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tasks/changelog.rake b/tasks/changelog.rake index 857e257e3..37fb725f3 100644 --- a/tasks/changelog.rake +++ b/tasks/changelog.rake @@ -25,13 +25,15 @@ end # Extracts all github users contributed since last tag def users_since_last_tag - `git --no-pager log $(git describe --tags --abbrev=0)..HEAD --grep="Merge" --pretty=format:"%s" | cut -d' ' -f 6 | cut -d/ -f1 | uniq` + `git --no-pager log $(git describe --tags --abbrev=0)..HEAD --grep="Merge" --pretty=format:"%s" | cut -d' ' -f 6 | cut -d/ -f1 | sort | uniq` end namespace :changelog do task :generate do insert_after_line("CHANGELOG.md", changes_since_last_tag, /^## Next/) - printf("Users contributed since last release:\n") - printf(users_since_last_tag) + contributors = users_since_last_tag.split("\n").map { |name| "@" + name } + printf("Huge thanks to all our contributors 🎆\n") + printf("Special thanks to: " + contributors.join(" ") + "\n") + printf("\nI'll merge this and release the gem once all tests pass.\n") end end From 07d5070a3831dc1c4e247e39c0e2463018d22492 Mon Sep 17 00:00:00 2001 From: Artem Yakimenko Date: Thu, 17 Dec 2020 09:57:30 +1100 Subject: [PATCH 2/2] Release 1.12.1 --- CHANGELOG.md | 15 +++++++++++++++ lib/fog/google/version.rb | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 529b3a733..d08a8cfac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ## Next +## 1.12.1 + +### User-facing + +#### Fixed + +\#513 - support passing other request options `StorageJSON#copy_object` [yosiat] + +### Development changes + +#### Added + +\#514 - Update .travis.yml to support PPC architecture testing [nageshlop] + + ## 1.12.0 ### User-facing diff --git a/lib/fog/google/version.rb b/lib/fog/google/version.rb index d729ec5de..e8391cdc2 100644 --- a/lib/fog/google/version.rb +++ b/lib/fog/google/version.rb @@ -1,5 +1,5 @@ module Fog module Google - VERSION = "1.12.0".freeze + VERSION = "1.12.1".freeze end end