diff --git a/CHANGELOG.md b/CHANGELOG.md index c457bac..6e58d55 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 05ce01f..d4a7706 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 4961a4c..e985206 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