Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
lizard (0.1.0)
lizard (0.2.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/lizard/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Lizard
VERSION = "0.1.0"
VERSION = "0.2.0"
end
2 changes: 1 addition & 1 deletion test/version_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading