Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CHANGELOG & fixed travis fails #394

Merged
merged 11 commits into from
Jan 15, 2021
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
language: ruby
cache: bundler
os: linux
dist: xenial

rvm:
- 2.5
- 2.6
- 2.7
- ruby-head


before_install:
- gem install bundler
Expand All @@ -17,7 +22,10 @@ gemfile:
- gemfiles/mongoid_5.0.gemfile
- gemfiles/mongoid_6.0.gemfile

matrix:
jobs:
allow_failures:
- rvm: 2.7
- rvm: ruby-head
include:
- rvm: 2.6
env: RUBYOPT="--enable-frozen-string-literal"
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## master (unreleased)
-

## 1.9.0
- Update method signature after change in IRB [@febeling]
- Fixes block and proc definition to work with Ruby 3.0.0 [@csalvato] - [#392]
- Removed check for Ruby 2.4 and earlier [@bryanh]
- Rails 5.0 builds are failing, because the sqlite3 version being installed is wrong version [#366]
- Rails 5.0 builds are failing, because the sqlite3 version being installed is wrong version [#366]
- Fixes spec suite to properly work via travis, gets a clean build [@imajes, others]
- Adds support for ActiveModel::Errors [@dshinzie] - [#301]
- removes use of `strip_heredoc` from specs as it's a rails dep [@kstephens] - [#303]
Expand Down