From 321b87e76d8e8eded1706ac6957db7a12e8abbc8 Mon Sep 17 00:00:00 2001 From: Gui Vieira Date: Mon, 17 Feb 2020 23:23:52 -0800 Subject: [PATCH] Release version 4.3.0 (#1276) ### Features * Add `have_rich_text` matcher for `ActionText` (#1263) ### Improvements * Use range on `validate_exclusion_of#in_range` documentation (#1273) ### Bug fixes * Fix `missing attribute:: scope 1` intermittent test: (#1274) --- NEWS.md | 17 +++++++++++++++++ README.md | 4 +++- lib/shoulda/matchers/version.rb | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 69f8192cc..a799f96aa 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,20 @@ +# 4.3.0 + +### Features + +* Add `have_rich_text` matcher for `ActionText` ([#1263]) + +### Improvements +* Use range on `validate_exclusion_of#in_range` documentation ([#1273]) + +### Bug fixes + +* Fix `missing attribute:: scope 1` intermittent test: ([#1274]) + +[#1263]: https://github.com/thoughtbot/shoulda-matchers/pull/1263 +[#1273]: https://github.com/thoughtbot/shoulda-matchers/pull/1273 +[#1273]: https://github.com/thoughtbot/shoulda-matchers/pull/1274 + # 4.2.0 ### Features diff --git a/README.md b/README.md index b6addc4d6..3a0827527 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ -# Shoulda Matchers [![Gem Version][version-badge]][rubygems] [![Build Status][travis-badge]][travis] ![Downloads][downloads-badge] [![Hound][hound-badge]][hound] +# Shoulda Matchers [![Gem Version][version-badge]][rubygems] [![Build Status][travis-badge]][travis] [![Total Downloads][downloads-total]][rubygems] [![Downloads][downloads-badge]][rubygems] [![Hound][hound-badge]][hound] [version-badge]: https://img.shields.io/gem/v/shoulda-matchers.svg [rubygems]: https://rubygems.org/gems/shoulda-matchers [travis-badge]: https://img.shields.io/travis/thoughtbot/shoulda-matchers/master.svg [travis]: https://travis-ci.org/thoughtbot/shoulda-matchers +[downloads-total]: https://img.shields.io/gem/dt/shoulda-matchers.svg +[downloads-badge]: https://img.shields.io/gem/dtv/shoulda-matchers.svg [downloads-badge]: https://img.shields.io/gem/dtv/shoulda-matchers.svg [hound-badge]: https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg [hound]: https://houndci.com diff --git a/lib/shoulda/matchers/version.rb b/lib/shoulda/matchers/version.rb index 50815ecf8..b0007f6fc 100644 --- a/lib/shoulda/matchers/version.rb +++ b/lib/shoulda/matchers/version.rb @@ -1,6 +1,6 @@ module Shoulda module Matchers # @private - VERSION = '4.2.0'.freeze + VERSION = '4.3.0'.freeze end end