Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grodowski committed Jan 9, 2024
1 parent 1f6df58 commit fcb17a0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
ruby-version: ${{ matrix.ruby }}
- name: Build and test with Rake
run: |
gem install bundler -v 2.4.22
gem install undercover --no-doc
gem install bundler undercover --no-doc
bundle install --jobs 4 --retry 3
bundle exec rake
- name: undercover (local)
Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby 3.3.0
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

# [0.4.7] - 2022-07-28
# [0.5.0] - 2024-01-09
### Changed
- Drop ruby 2.x support, require ruby 3.x in gemspec
- Dev dependency updates

# [0.4.7] - 2024-01-08
### Fixed
- [Update of one-line block is ignored](https://github.com/grodowski/undercover/pull/207) by [@lizhangyuh](https://github.com/lizhangyuh)

Expand Down Expand Up @@ -123,7 +128,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- First release of `undercover` 🎉

[Unreleased]: https://github.com/grodowski/undercover/compare/v0.4.7...HEAD
[Unreleased]: https://github.com/grodowski/undercover/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/grodowski/undercover/compare/v0.4.7...v0.5.0
[0.4.7]: https://github.com/grodowski/undercover/compare/v0.4.6...v0.4.7
[0.4.6]: https://github.com/grodowski/undercover/compare/v0.4.5...v0.4.6
[0.4.5]: https://github.com/grodowski/undercover/compare/v0.4.4...v0.4.5
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ source 'https://rubygems.org'

gemspec

gem 'base64'
gem 'bundler'
gem 'pry'
gem 'rake', '~> 13.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/undercover/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Undercover
VERSION = '0.4.7'
VERSION = '0.5.0'
end

0 comments on commit fcb17a0

Please sign in to comment.