From c662791f71f503c5dfce17e2290761828c210598 Mon Sep 17 00:00:00 2001 From: Matthew Hutchinson Date: Thu, 24 May 2018 12:14:38 +0100 Subject: [PATCH] CHANGELOG updated --- CHANGELOG.md | 68 ++++++++++++++++++++++++++++++++ lib/lolcommits/lolsrv/version.rb | 2 +- lolcommits-lolsrv.gemspec | 7 ++++ 3 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7261702 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,68 @@ +# ChangeLog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](KeepAChangelog) and this project +adheres to [Semantic Versioning](Semver). + +## [Unreleased] + +- Your contribution here! + +## [0.1.1] - 2018-05-24 +### Changed +- Updated gemspec meta data links. + +## [0.1.0] - 2018-03-27 +### Changed +- Require at least lolcommits 0.12.0 + +### Removed +- Remove runner_order method + +## [0.0.7] - 2018-02-05 +### Removed +- Dropped Ruby 2.0 support + +## [0.0.6] - 2018-01-03 +### Changed +- Updated Travis Rubies +- Require at least lolcommits 0.10.0 + +### Removed +- Removed name method + +## [0.0.5] - 2017-12-21 +### Changed +- Minor code refactor + +## [0.0.4] - 2017-12-17 +### Changed +- Update README +- Refactor plugin code + +## [0.0.3] - 2017-12-15 +### Changed +- Update tests to work with fake_io_capture + +## [0.0.2] - 2017-12-06 +### Changed +- Updated Travis Rubies +- README + +## [0.0.1] - 2017-09-17 +### Changed +- Initial release + +[Unreleased]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.1.1...HEAD +[0.1.1]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.1.0...v0.1.1 +[0.1.0]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.7...v0.1.0 +[0.0.7]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.6...v0.0.7 +[0.0.6]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.5...v0.0.6 +[0.0.5]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.4...v0.0.5 +[0.0.4]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.3...v0.0.4 +[0.0.3]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.2...v0.0.3 +[0.0.2]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.1...v0.0.2 +[0.0.1]: https://github.com/lolcommits/lolcommits-lolsrv/compare/f328789...v0.0.1 +[KeepAChangelog]: http://keepachangelog.com/en/1.0.0/ +[Semver]: http://semver.org/spec/v2.0.0.html diff --git a/lib/lolcommits/lolsrv/version.rb b/lib/lolcommits/lolsrv/version.rb index 4e943b1..d7cfe16 100644 --- a/lib/lolcommits/lolsrv/version.rb +++ b/lib/lolcommits/lolsrv/version.rb @@ -1,5 +1,5 @@ module Lolcommits module Lolsrv - VERSION = "0.1.0".freeze + VERSION = "0.1.1".freeze end end diff --git a/lolcommits-lolsrv.gemspec b/lolcommits-lolsrv.gemspec index 99b24fd..1dfab6c 100644 --- a/lolcommits-lolsrv.gemspec +++ b/lolcommits-lolsrv.gemspec @@ -19,6 +19,13 @@ Gem::Specification.new do |spec| spec.homepage = "https://github.com/lolcommits/lolcommits-lolsrv" spec.license = "LGPL-3" + spec.metadata = { + "homepage_uri" => "https://github.com/lolcommits/lolcommits-lolsrv", + "changelog_uri" => "https://github.com/lolcommits/lolcommits-lolsrv/blob/master/CHANGELOG.md", + "source_code_uri" => "https://github.com/lolcommits/lolcommits-lolsrv", + "bug_tracker_uri" => "https://github.com/lolcommits/lolcommits-lolsrv/issues", + } + # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata)