diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d23b10..ac76d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ ## 0.5.0 (next) -* Your contribution here. * [#146](https://github.com/mongoid/mongoid_search/pull/146): Update dependencies and switch to Github Actions - [@yads](https://github.com/yads). +* Your contribution here. ## 0.4.0 -* [#138](https://github.com/mongoid/mongoid_search/pull/138): Update mongoid::search::util.normalize_keywords - [@yads](https://github.com/yads). +* [#138](https://github.com/mongoid/mongoid_search/pull/138): Update `Mongoid::Search::Util.normalize_keywords` - [@yads](https://github.com/yads). * [#132](https://github.com/mongoid/mongoid_search/pull/132): Add RELEASING and CONTRIBUTING - [@rtrv](https://github.com/rtrv). ## 0.3.6 diff --git a/RELEASING.md b/RELEASING.md index 84c21c7..87bd333 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -25,7 +25,7 @@ Remove the line with "Your contribution here.", since there will be no more cont Commit your changes. ``` -git add CHANGELOG.md lib/mongoid/search/version.rb +git add CHANGELOG.md git commit -m "Preparing for release, 0.4.0." git push origin master ``` @@ -51,12 +51,12 @@ Add the next release to [CHANGELOG.md](CHANGELOG.md). * Your contribution here. ``` -Increment the minor version, modify [lib/mongoid/search/version.rb](lib/mongoid/search/version.rb). +Increment the minor version, modify [mongoid_search.gemspec](mongoid_search.gemspec). Commit your changes. ``` -git add CHANGELOG.md lib/mongoid/search/version.rb +git add CHANGELOG.md mongoid_search.gemspec git commit -m "Preparing for next release, 0.4.1." git push origin master ``` diff --git a/mongoid_search.gemspec b/mongoid_search.gemspec index 7f5e965..5c9fc9e 100644 --- a/mongoid_search.gemspec +++ b/mongoid_search.gemspec @@ -5,7 +5,7 @@ $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib) Gem::Specification.new do |s| s.name = 'mongoid_search' - s.version = '0.4.0' + s.version = '0.5.0' s.authors = ['Mauricio Zaffari'] s.email = ['mauricio@papodenerd.net'] s.homepage = 'https://github.com/mongoid/mongoid_search'