diff --git a/CHANGELOG.md b/CHANGELOG.md index ab1b38a..7579ebe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,40 @@ -See [GitHub Releases](https://github.com/rmm5t/minitest-matchers_vaccine/releases) +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com//), and this project adheres to [Semantic Versioning](https://semver.org/). + +## [Unreleased] - TBD + +## [1.0.5] - 2022-05-12 + +- Add GitHub CI workflow +- Add Ruby 3 support + +## [1.0.4] - 2016-05-31 + +- Prevent warnings for `@subject` instance variable not initialized + +## [1.0.3] - 2016-05-31 + +- Improved Ruby 2.2 support (#1 thanks to @spovich). + +## [1.0.2] - 2016-05-31 + +- Renamed MiniTest to Minitest + +## [1.0.1] - 2016-05-31 + +- Bug fixes + +## [1.0.0] - 2016-05-31 + +- Initial release + +[Unreleased]: https://github.com/rmm5t/minitest-matchers_vaccine/compare/v1.0.5..HEAD +[1.0.5]: https://github.com/rmm5t/minitest-matchers_vaccine/compare/v1.0.4..v1.0.5 +[1.0.4]: https://github.com/rmm5t/minitest-matchers_vaccine/compare/v1.0.3..v1.0.4 +[1.0.3]: https://github.com/rmm5t/minitest-matchers_vaccine/compare/v1.0.2..v1.0.3 +[1.0.2]: https://github.com/rmm5t/minitest-matchers_vaccine/compare/v1.0.1..v1.0.2 +[1.0.1]: https://github.com/rmm5t/minitest-matchers_vaccine/compare/v1.0.0..v1.0.1 +[1.0.0]: https://github.com/rmm5t/minitest-matchers_vaccine/compare/6fdef88..v1.0.0 diff --git a/lib/minitest/matchers_vaccine/version.rb b/lib/minitest/matchers_vaccine/version.rb index 2fea80b..6b90ebb 100644 --- a/lib/minitest/matchers_vaccine/version.rb +++ b/lib/minitest/matchers_vaccine/version.rb @@ -1,5 +1,5 @@ module Minitest module MatchersVaccine - VERSION = "1.0.4" + VERSION = "1.0.5" end end