diff --git a/CHANGELOG.md b/CHANGELOG.md index f6931b4d..0931bfa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +0.22.0 (2022-12-23 +========== + +## Enhancements + +* On Ruby 3.2+, you can now use the new Coverage library feature for `eval` - See https://github.com/simplecov-ruby/simplecov/pull/1037. Thanks [@mame](https://github.com/mame)! + +## Bugfixes +* Fix for making the test suite pass against the upcoming Ruby 3.2 - See https://github.com/simplecov-ruby/simplecov/pull/1035. Thanks [@mame](https://github.com/mame) + 0.21.2 (2021-01-09) ========== diff --git a/lib/simplecov/version.rb b/lib/simplecov/version.rb index 0f1939eb..d0483f8a 100644 --- a/lib/simplecov/version.rb +++ b/lib/simplecov/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SimpleCov - VERSION = "0.21.2" + VERSION = "0.22.0" end