diff --git a/CHANGELOG.md b/CHANGELOG.md index 05c37f4..4f68ec3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ chandler is in a pre-1.0 state. This means that its APIs and behavior are subjec ## [Unreleased][] * Your contribution here! + +## [0.2.0][] (2016-02-19) + * Chandler now understands versions at Markdown/Rdoc h1-level headings (previously only h2 and h3 were searched). * If Chandler can't find any version tags, print an error message rather than exiting silently. * If Chandler can't find a version in your CHANGELOG, it will log a warning rather than exiting with an uncaught exception. @@ -25,6 +28,7 @@ chandler is in a pre-1.0 state. This means that its APIs and behavior are subjec * Initial release [Semver]: http://semver.org -[Unreleased]: https://github.com/mattbrictson/chandler/compare/v0.1.2...HEAD +[Unreleased]: https://github.com/mattbrictson/chandler/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/mattbrictson/chandler/compare/v0.1.2...v0.2.0 [0.1.2]: https://github.com/mattbrictson/chandler/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/mattbrictson/chandler/compare/v0.1.0...v0.1.1 diff --git a/lib/chandler/version.rb b/lib/chandler/version.rb index 69c2bd8..b880694 100644 --- a/lib/chandler/version.rb +++ b/lib/chandler/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Chandler - VERSION = "0.1.2".freeze + VERSION = "0.2.0".freeze end