diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e821d6..d2884ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,24 @@ # Changelog +## [v0.2.0](https://github.com/samvera-labs/huborg/tree/v0.2.0) (2020-02-28) + +[Full Changelog](https://github.com/samvera-labs/huborg/compare/v0.1.0...v0.2.0) + +**Implemented enhancements:** + +- Adding release process [\#4](https://github.com/samvera-labs/huborg/pull/4) ([jeremyf](https://github.com/jeremyf)) + +**Merged pull requests:** + +- Tweaking documentation [\#5](https://github.com/samvera-labs/huborg/pull/5) ([jeremyf](https://github.com/jeremyf)) +- Adding Huborg::Client\#synchronize\_mailmap! [\#3](https://github.com/samvera-labs/huborg/pull/3) ([jeremyf](https://github.com/jeremyf)) +- Adding Huborg::Client\#audit\_license [\#2](https://github.com/samvera-labs/huborg/pull/2) ([jeremyf](https://github.com/jeremyf)) +- Adding Huborg::Client\#clone\_and\_rebase! [\#1](https://github.com/samvera-labs/huborg/pull/1) ([jeremyf](https://github.com/jeremyf)) + ## [v0.1.0](https://github.com/samvera-labs/huborg/tree/v0.1.0) (2020-02-26) [Full Changelog](https://github.com/samvera-labs/huborg/commit/cc1ce07147ad552cabf343c8195610bbb8c9376d) - Adding Huborg::Client\#push\_template! ([jeremyf](https://github.com/jeremyf)) - \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* diff --git a/lib/huborg.rb b/lib/huborg.rb index 14e5f62..edfc461 100644 --- a/lib/huborg.rb +++ b/lib/huborg.rb @@ -114,6 +114,7 @@ def push_template!(template:, filename:, overwrite: false) end # @api public + # @since v0.2.0 # # Responsible for logging (as an error) repositories that do not # have a license. @@ -148,6 +149,7 @@ def audit_license(skip_private: true, skip_archived: true, allowed_licenses: :al end # @api public + # @since v0.2.0 # # Responsible for taking a template that confirms to Git's .mailmap # file format (e.g. https://github.com/samvera/maintenance/blob/master/templates/MAILMAP) @@ -200,6 +202,7 @@ def synchronize_mailmap!(template:, consolidated_template: template) end # @api public + # @since v0.2.0 # # Clone all repositories (that match the {#repository_pattern} for # the given organization(s). Then and rebase any existing repositories. diff --git a/lib/huborg/version.rb b/lib/huborg/version.rb index 50274b1..5677d7b 100644 --- a/lib/huborg/version.rb +++ b/lib/huborg/version.rb @@ -1,5 +1,5 @@ module Huborg # The current version of Huborg, as per Semantic Versioning # @see https://semver.org - VERSION = "0.1.0" + VERSION = "0.2.0" end