From 4f0705b9992ad11bbaac6066318635e4f14ffc65 Mon Sep 17 00:00:00 2001 From: "Bryan Hanks, PMP" Date: Fri, 15 Jan 2021 00:41:50 -0600 Subject: [PATCH] Update CHANGELOG & fixed travis fails (#394) * Update CHANGELOG.md Added credit for PR and tag release * Added additional rubies for Continuous integration; cleaned up travis config * Updated travis config with more rubies * Allow failures in wrong place * Another typo * Restore monoid_4.0 gemfile * Removed travis config for mongoid 4 * Ruby 2.7 can fail CI until we can get it working * Fixed allow failures syntax Co-authored-by: Bryan Hanks, PMP --- .travis.yml | 10 +++++++++- CHANGELOG.md | 6 +++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bcacd72..7b94621 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 @@ -19,7 +24,10 @@ gemfile: - gemfiles/mongoid_7.0.gemfile - gemfiles/mongoid_7.1.gemfile -matrix: +jobs: + allow_failures: + - rvm: 2.7 + - rvm: ruby-head include: - rvm: 2.6 env: RUBYOPT="--enable-frozen-string-literal" diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d43cb4..814b92a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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]