Skip to content

Commit

Permalink
Replace Travis-CI references by GHA.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Feb 15, 2024
1 parent 4803493 commit 6947e37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Mongoid Search is a simple full text search implementation for Mongoid ORM. It supports Mongoid 3, 4, 5 and 6 and performs well for small data sets. If your searchable model is big (i.e. 1.000.000+ records), [mongoid_fulltext](https://github.com/mongoid/mongoid_fulltext), ElasticSearch, Solr or Sphinx may suit you better.

[![Build Status](https://travis-ci.org/mongoid/mongoid_search.svg?branch=master)](https://travis-ci.org/mongoid/mongoid_search)
[![Test](https://github.com/mongoid/mongoid_search/actions/workflows/test.yml/badge.svg)](https://github.com/mongoid/mongoid_search/actions/workflows/test.yml)

## Installation

Expand Down
9 changes: 3 additions & 6 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@ bundle install
bundle exec rake
```

Check that the last build succeeded in [Travis CI](https://travis-ci.org/mongoid/mongoid-search) for all supported platforms.

Increment the version, modify [lib/mongoid/search/version.rb](lib/mongoid/search/version.rb).

* Increment the third number if the release has bug fixes and/or very minor features, only (eg. change `0.5.1` to `0.5.2`).
* Increment the second number if the release contains major features or breaking API changes (eg. change `0.5.1` to `0.4.0`).
Check that the last build succeeded in [GitHub Actions](https://github.com/mongoid/mongoid_search/actions) for all supported platforms.

Change "Next Release" in [CHANGELOG.md](CHANGELOG.md) to the new version.

Expand Down Expand Up @@ -65,3 +60,5 @@ git add CHANGELOG.md lib/mongoid/search/version.rb
git commit -m "Preparing for next release, 0.4.1."
git push origin master
```

Major version numbers are incremented with the first new feature.

0 comments on commit 6947e37

Please sign in to comment.