From 2e53df7e56e132fe2cbf91ca34a9906a29928b62 Mon Sep 17 00:00:00 2001 From: Benjamin Reynolds Date: Thu, 30 Sep 2021 14:38:07 -0500 Subject: [PATCH] Release version 0.9.0 [Full Changelog](https://github.com/RadiusNetworks/radius-spec/compare/v0.8.0...v0.9.0) Enhancements ------------ - Upgrade to Rubocop 0.89.x (Aaron Hill, Aaron Kromer, Ben Reynolds, Chris Hoffman, James Nebeker, JC Avena, Sam Kim #27) - Upgrade to Rubocop Rails 2.6.x (Aaron Hill, Aaron Kromer, Ben Reynolds, Chris Hoffman, James Nebeker, JC Avena, Sam Kim #27) - Adjust common Rubocop configuration (Aaron Hill, Aaron Kromer, Ben Reynolds, Chris Hoffman, James Nebeker, JC Avena, Sam Kim #27) - Configure multiple metrics to use the `CountAsOne` option for array, hash and heredocs - Disable `Style/SlicingWithRange` as we do not care about the style - Includes new `shared_example` / `shared_context` inclusion aliases `has_behavior` and `it_has_behavior` for behavior driven development language (Aaron Kromer, Ben Reynolds #28) Bug Fixes --------- None Breaking Changes ---------------- - Change the default behavior from `:warn` to `:raise` for RSpec expectations behavior `on_potential_false_positives` (Aaron Kromer, Ben Reynolds #28) --- CHANGELOG.md | 6 +++--- lib/radius/spec/version.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2347474..5613a83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -## Development +## 0.9.0 (September 30, 2021) -[Full Changelog](https://github.com/RadiusNetworks/radius-spec/compare/v0.8.0...main) +[Full Changelog](https://github.com/RadiusNetworks/radius-spec/compare/v0.8.0...v0.9.0) ### Enhancements @@ -19,7 +19,7 @@ ### Bug Fixes -- TODO +None ### Breaking Change diff --git a/lib/radius/spec/version.rb b/lib/radius/spec/version.rb index 624efc6..28d710e 100644 --- a/lib/radius/spec/version.rb +++ b/lib/radius/spec/version.rb @@ -2,6 +2,6 @@ module Radius module Spec - VERSION = "0.9.pre" + VERSION = "0.9.0" end end