diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a6279e..ba8814d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.5.0] - 2026-02-28 + ### Added - Exception conditions: `raises ExceptionClass` in Then blocks wraps the preceding When block in an exception assertion. @@ -150,7 +152,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/rspockframework/rspock/compare/v2.4.0...HEAD +[Unreleased]: https://github.com/rspockframework/rspock/compare/v2.5.0...HEAD +[2.5.0]: https://github.com/rspockframework/rspock/compare/v2.4.0...v2.5.0 [2.4.0]: https://github.com/rspockframework/rspock/compare/v2.3.1...v2.4.0 [2.3.1]: https://github.com/rspockframework/rspock/compare/v2.3.0...v2.3.1 [2.3.0]: https://github.com/rspockframework/rspock/compare/v2.2.0...v2.3.0 diff --git a/Gemfile.lock b/Gemfile.lock index 731ea8e..a7d6882 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rspock (2.4.0) + rspock (2.5.0) ast_transform (~> 2.0) minitest (~> 5.0) mocha (>= 1.0) diff --git a/lib/rspock/version.rb b/lib/rspock/version.rb index 9888664..5c35291 100644 --- a/lib/rspock/version.rb +++ b/lib/rspock/version.rb @@ -1,3 +1,3 @@ module RSpock - VERSION = "2.4.0" + VERSION = "2.5.0" end