diff --git a/NEWS.md b/NEWS.md index 54ec2f1f..7ee2975e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,6 +2,13 @@ User-visible changes worth mentioning. +## 3.0.3 + +- Test against Ruby 2.6 and Rails 6 +- Use `find_each` in favor of `map` in `Merit::Action.check_unprocessed` +- Allow finding badges defined with symbol names +- Remove `Badge#last_granted` method (deprecated in merit <2.0) + ## 3.0.2 - [#287] Make Sash an optional dependency, fixing issues in Rails 5.1. diff --git a/README.md b/README.md index d086d4b7..21d04fe8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ and Rankings. [![Build Status](https://travis-ci.org/merit-gem/merit.svg?branch=master)](http://travis-ci.org/merit-gem/merit) [![Coverage Status](https://coveralls.io/repos/github/merit-gem/merit/badge.svg?branch=master)](https://coveralls.io/github/merit-gem/merit?branch=master) [![Code Climate](https://codeclimate.com/github/tute/merit/badges/gpa.svg)](https://codeclimate.com/github/tute/merit) -[![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com) # Table of Contents diff --git a/merit.gemspec b/merit.gemspec index 72da72b6..8c86785c 100644 --- a/merit.gemspec +++ b/merit.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| s.files = `git ls-files`.split("\n").reject{|f| f =~ /^\./ } s.test_files = `git ls-files -- test/*`.split("\n") s.license = 'MIT' - s.version = '3.0.2' + s.version = '3.0.3' s.authors = ["Tute Costa"] s.email = 'tutecosta@gmail.com'