From 5891061c5a8a0c7828089c3f77a41ddaf898e778 Mon Sep 17 00:00:00 2001 From: Mathieu Jobin Date: Tue, 9 Jul 2024 21:36:29 +0900 Subject: [PATCH] update ChangeLog and fix one more indent --- CHANGELOG.md | 11 +++++++++++ lib/apipie/error_description.rb | 4 +--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c615dea9..d6df3043 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Changelog =========== +## [v1.4.1](https://github.com/Apipie/apipie-rails/tree/v1.4.1) (2024-07-09) +[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v1.4.0...v1.4.1) +* Fix multiple rubocop offenses via rubocop_challenger. (Mathieu Jobin) + * RSpec/ExampleWording (#913) + * Layout/FirstArrayElementIndentation (#914) + * Style/BlockDelimiters (#917) + * Style/MutableConstant (#916) + * Layout/InitialIndentation (#915) + * Performance/RegexpMatch (#918) +* Fix CI: build green for modern ruby, rack, and rubocop-rspec (#939) (Murray Steele) + ## [v1.4.0](https://github.com/Apipie/apipie-rails/tree/v1.4.0) (2024-05-30) [Full Changelog](https://github.com/Apipie/apipie-rails/compare/v1.3.0...v1.4.0) * Add Ruby 3.3.0 to CI build matrix (#906) Masato Nakamura diff --git a/lib/apipie/error_description.rb b/lib/apipie/error_description.rb index 62626e9c..4f0f63af 100644 --- a/lib/apipie/error_description.rb +++ b/lib/apipie/error_description.rb @@ -5,9 +5,7 @@ class ErrorDescription def self.from_dsl_data(args) code_or_options, desc, options = args - Apipie::ErrorDescription.new(code_or_options, - desc, - options) + Apipie::ErrorDescription.new(code_or_options, desc, options) end def initialize(code_or_options, desc = nil, options = {})