Skip to content

Commit

Permalink
Merge pull request #515 from Temikus/release-1_12_1
Browse files Browse the repository at this point in the history
Release 1.12.1 🛠
  • Loading branch information
Temikus authored Dec 17, 2020
2 parents 0535576 + 07d5070 commit 89acae9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/fog/google/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fog
module Google
VERSION = "1.12.0".freeze
VERSION = "1.12.1".freeze
end
end
8 changes: 5 additions & 3 deletions tasks/changelog.rake
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 89acae9

Please sign in to comment.