From c67b11e675c94100bf12b90e2ecfbc7086505596 Mon Sep 17 00:00:00 2001 From: Pedro Paiva Date: Sun, 21 Apr 2024 22:35:43 -0300 Subject: [PATCH] Bump version to 3.0.0.rc1 (#100) --- CHANGELOG.md | 2 +- README.md | 4 ++-- lib/shoulda/context/version.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c457bac6..6e58d557 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 3.0.0.rc1 - 2024-04-21 ### Backward-incompatible changes diff --git a/README.md b/README.md index 05ce01f1..d4a77060 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,14 @@ group in your Gemfile: ``` ruby group :test do - gem 'shoulda-context', '~> 2.0' + gem 'shoulda-context', '~> 3.0.0.rc1' end ``` If you're not working on a Rails app, then you can simply add: ``` ruby -gem 'shoulda-context', '~> 2.0' +gem 'shoulda-context', '~> 3.0.0.rc1' ``` Then run `bundle install`. diff --git a/lib/shoulda/context/version.rb b/lib/shoulda/context/version.rb index 4961a4c5..e9852066 100644 --- a/lib/shoulda/context/version.rb +++ b/lib/shoulda/context/version.rb @@ -1,5 +1,5 @@ module Shoulda module Context - VERSION = "2.0.0".freeze + VERSION = "3.0.0.rc1".freeze end end