Skip to content

Commit 25b4114

Browse files
setting up next release, 1.1.0
1 parent 40bcbc4 commit 25b4114

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.1.0 (Next)
2+
* Your contribution here.
3+
14
### 1.0.0 (2024/06/19)
25

36
* [#18](https://github.com/mongoid/mongoid-compatibility/pull/18): Test MongoDB 6 and 7 - [@saisrinivasan](https://github.com/SairamSrinivasan).

RELEASING.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,22 @@ Generally, `mongoid-compatibility` should be released with enthusiasm but care.
4141
#=> Pushed git commits and tags.
4242
#=> Pushed mongoid-compatibility 0.4.0 to rubygems.org.
4343
```
44+
## Prepare for the Next Version
45+
46+
Add the next release to [CHANGELOG.md](CHANGELOG.md).
47+
48+
```
49+
### 1.1.0 (Next)
50+
51+
* Your contribution here.
52+
```
53+
54+
Increment the minor version, modify [lib/mongoid/compatibility/self.rb](lib/mongoid/compatibility/self.rb').
55+
56+
Commit your changes.
57+
58+
```
59+
git add CHANGELOG.md lib/mongoid/compatibility/self.rb'
60+
git commit -m "Setting up next release, 1.1.0."
61+
git push origin master
62+
```

lib/mongoid/compatibility/self.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Mongoid
44
module Compatibility
5-
VERSION = '1.0.0'
5+
VERSION = '1.1.0'
66
end
77
end

0 commit comments

Comments
 (0)