diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7e4098a3..0d1af5e73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ concurrency: env: RSPEC_CI: true # This tells rspec-rails what branch to run in ci - RSPEC_VERSION: '= 3.13.0.pre' + RSPEC_VERSION: '= 3.14.0.pre' jobs: rubocop: name: Rubocop diff --git a/Changelog.md b/Changelog.md index 12644c448..230eafa46 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,9 @@ ### Development [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.3...main) +### 3.13.0 / 2024-02-04 +[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.4...v3.13.0) + Enhancements: * Update `eq` and `eql` matchers to better highlight difference in string encoding. diff --git a/lib/rspec/expectations/version.rb b/lib/rspec/expectations/version.rb index 622b855d5..91a77c0a5 100644 --- a/lib/rspec/expectations/version.rb +++ b/lib/rspec/expectations/version.rb @@ -2,7 +2,7 @@ module RSpec module Expectations # @private module Version - STRING = '3.13.0.pre' + STRING = '3.14.0.pre' end end end