Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
timdiggins authored Oct 14, 2018
1 parent 4ca75a6 commit c425e33
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* Raises a more helpful error if the column is not found when calling
`DbTextSearch::CaseInsensitive`.

## v0.3.0

* * **Feature** Case insensitive sorting via the new `CaseInsensitive#column_for_order(asc_or_desc)` method. Use it like `SomeModel.some_scope.order(CaseInsensitive.new(SomeModel, :some_field).column_for_order(:asc))`

## v0.2.1

* Support for PostGIS adapters.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ DbTextSearch provides a unified interface on top of ActiveRecord for SQLite, MyS
Add this line to your application's Gemfile:

```ruby
gem 'db_text_search', '~> 0.2.2'
gem 'db_text_search', '~> 0.3.0'
```

## Usage
Expand Down
17 changes: 17 additions & 0 deletions RELEASE-CHECKLIST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
The checklist for releasing a new version of db_text_search.

Pre-requisites for the releaser:

* Push access to RubyGems.

Release checklist:

- [ ] Update gem version in `version.rb` and `README.md`.
- [ ] Update `CHANGELOG.md`.
- [ ] Wait for the Travis build to come back green.
- [ ] Tag the release and push it to rubygems:

```bash
rake release
```
- [ ] Copy the release notes from the changelog to [GitHub Releases](https://github.com/thredded/thredded/releases).
2 changes: 1 addition & 1 deletion lib/db_text_search/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module DbTextSearch
# Gem version
VERSION = '0.2.2'
VERSION = '0.3.0'
end

0 comments on commit c425e33

Please sign in to comment.