diff --git a/CHANGELOG.md b/CHANGELOG.md index 02ec5bd..1a481ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2026-03-23 + ### Added -- Lizard test reporting in CI and Minitest reporter plugin in test_helper +- Metadata support for test reports (#34) +- Lizard test reporting in CI and Minitest reporter plugin in test_helper (#30) ### Removed -- Ruby 3.2 support; minimum is now 3.3 +- Ruby 3.2 support; minimum is now 3.3 (#20) ## [0.1.0] - 2026-02-16 @@ -28,5 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Release workflow publishing to GitHub Packages with GitHub Releases - SimpleCov + Codecov integration -[Unreleased]: https://github.com/djbender/lizard-ruby/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/djbender/lizard-ruby/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/djbender/lizard-ruby/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/djbender/lizard-ruby/releases/tag/v0.1.0 diff --git a/Gemfile.lock b/Gemfile.lock index 2cff974..b244662 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - lizard (0.1.0) + lizard (0.2.0) GEM remote: https://rubygems.org/ diff --git a/lib/lizard/version.rb b/lib/lizard/version.rb index 9061e5f..85162ab 100644 --- a/lib/lizard/version.rb +++ b/lib/lizard/version.rb @@ -1,3 +1,3 @@ module Lizard - VERSION = "0.1.0" + VERSION = "0.2.0" end diff --git a/test/version_test.rb b/test/version_test.rb index 3916c49..2832eba 100644 --- a/test/version_test.rb +++ b/test/version_test.rb @@ -2,6 +2,6 @@ class VersionTest < Minitest::Test def test_version_constant_exists - assert_equal "0.1.0", Lizard::VERSION + assert_equal "0.2.0", Lizard::VERSION end end