Skip to content

Commit bd7326e

Browse files
authored
Bump version to 0.2.0 (#35)
* Bump version to 0.2.0 * Update Gemfile.lock for 0.2.0
1 parent 1f1e201 commit bd7326e

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0] - 2026-03-23
11+
1012
### Added
1113

12-
- Lizard test reporting in CI and Minitest reporter plugin in test_helper
14+
- Metadata support for test reports (#34)
15+
- Lizard test reporting in CI and Minitest reporter plugin in test_helper (#30)
1316

1417
### Removed
1518

16-
- Ruby 3.2 support; minimum is now 3.3
19+
- Ruby 3.2 support; minimum is now 3.3 (#20)
1720

1821
## [0.1.0] - 2026-02-16
1922

@@ -28,5 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2831
- Release workflow publishing to GitHub Packages with GitHub Releases
2932
- SimpleCov + Codecov integration
3033

31-
[Unreleased]: https://github.com/djbender/lizard-ruby/compare/v0.1.0...HEAD
34+
[Unreleased]: https://github.com/djbender/lizard-ruby/compare/v0.2.0...HEAD
35+
[0.2.0]: https://github.com/djbender/lizard-ruby/compare/v0.1.0...v0.2.0
3236
[0.1.0]: https://github.com/djbender/lizard-ruby/releases/tag/v0.1.0

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
lizard (0.1.0)
4+
lizard (0.2.0)
55

66
GEM
77
remote: https://rubygems.org/

lib/lizard/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Lizard
2-
VERSION = "0.1.0"
2+
VERSION = "0.2.0"
33
end

test/version_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
class VersionTest < Minitest::Test
44
def test_version_constant_exists
5-
assert_equal "0.1.0", Lizard::VERSION
5+
assert_equal "0.2.0", Lizard::VERSION
66
end
77
end

0 commit comments

Comments
 (0)