Skip to content

Commit 5891061

Browse files
committed
update ChangeLog and fix one more indent
1 parent 89e7ded commit 5891061

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Changelog
22
===========
33

4+
## [v1.4.1](https://github.com/Apipie/apipie-rails/tree/v1.4.1) (2024-07-09)
5+
[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v1.4.0...v1.4.1)
6+
* Fix multiple rubocop offenses via rubocop_challenger. (Mathieu Jobin)
7+
* RSpec/ExampleWording (#913)
8+
* Layout/FirstArrayElementIndentation (#914)
9+
* Style/BlockDelimiters (#917)
10+
* Style/MutableConstant (#916)
11+
* Layout/InitialIndentation (#915)
12+
* Performance/RegexpMatch (#918)
13+
* Fix CI: build green for modern ruby, rack, and rubocop-rspec (#939) (Murray Steele)
14+
415
## [v1.4.0](https://github.com/Apipie/apipie-rails/tree/v1.4.0) (2024-05-30)
516
[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v1.3.0...v1.4.0)
617
* Add Ruby 3.3.0 to CI build matrix (#906) Masato Nakamura

lib/apipie/error_description.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ class ErrorDescription
55

66
def self.from_dsl_data(args)
77
code_or_options, desc, options = args
8-
Apipie::ErrorDescription.new(code_or_options,
9-
desc,
10-
options)
8+
Apipie::ErrorDescription.new(code_or_options, desc, options)
119
end
1210

1311
def initialize(code_or_options, desc = nil, options = {})

0 commit comments

Comments
 (0)