From 25b41142753422380ec1d952eea0220cb637e157 Mon Sep 17 00:00:00 2001 From: Sai Srinivasan Date: Mon, 24 Jun 2024 20:48:32 -0700 Subject: [PATCH] setting up next release, 1.1.0 --- CHANGELOG.md | 3 +++ RELEASING.md | 19 +++++++++++++++++++ lib/mongoid/compatibility/self.rb | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae56417..5853e64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### 1.1.0 (Next) +* Your contribution here. + ### 1.0.0 (2024/06/19) * [#18](https://github.com/mongoid/mongoid-compatibility/pull/18): Test MongoDB 6 and 7 - [@saisrinivasan](https://github.com/SairamSrinivasan). diff --git a/RELEASING.md b/RELEASING.md index 6b11519..2167c2c 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -41,3 +41,22 @@ Generally, `mongoid-compatibility` should be released with enthusiasm but care. #=> Pushed git commits and tags. #=> Pushed mongoid-compatibility 0.4.0 to rubygems.org. ``` +## Prepare for the Next Version + +Add the next release to [CHANGELOG.md](CHANGELOG.md). + +``` +### 1.1.0 (Next) + +* Your contribution here. +``` + +Increment the minor version, modify [lib/mongoid/compatibility/self.rb](lib/mongoid/compatibility/self.rb'). + +Commit your changes. + +``` +git add CHANGELOG.md lib/mongoid/compatibility/self.rb' +git commit -m "Setting up next release, 1.1.0." +git push origin master +``` diff --git a/lib/mongoid/compatibility/self.rb b/lib/mongoid/compatibility/self.rb index 3878c04..7f0fbec 100644 --- a/lib/mongoid/compatibility/self.rb +++ b/lib/mongoid/compatibility/self.rb @@ -2,6 +2,6 @@ module Mongoid module Compatibility - VERSION = '1.0.0' + VERSION = '1.1.0' end end