From 5c8d1799f54d231bf97d9a0e558ffa3938a05932 Mon Sep 17 00:00:00 2001 From: Jon Rowe Date: Sun, 4 Feb 2024 13:06:02 +0000 Subject: [PATCH] v3.13.0 --- .github/workflows/ci.yml | 2 +- Changelog.md | 3 +++ lib/rspec/core/version.rb | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d1c45b6cf..a486864ffb 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 f5599cdc49..50bfd0d27f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,9 @@ ### Development [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.3...main) +### 3.13.0 / 2024-02-04 +[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.3...v3.13.0) + Enhancements: * Support the `--backtrace` flag when using the JSON formatter. (Matt Larraz, #2980) diff --git a/lib/rspec/core/version.rb b/lib/rspec/core/version.rb index f1f63b531c..6339e2c3fa 100644 --- a/lib/rspec/core/version.rb +++ b/lib/rspec/core/version.rb @@ -3,7 +3,7 @@ module Core # Version information for RSpec Core. module Version # Current version of RSpec Core, in semantic versioning format. - STRING = '3.13.0.pre' + STRING = '3.14.0.pre' end end end