Skip to content

Commit

Permalink
update ChangeLog and drop support for ruby 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieujobin committed Jul 9, 2024
1 parent eef4770 commit 326b130
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
* RSpec/ExampleWording (#913)
* Layout/FirstArrayElementIndentation (#914)
* Style/BlockDelimiters (#917)
* Style/MutableConstant (#916)
* Layout/InitialIndentation (#915)
* Performance/RegexpMatch (#918)
* Drop support for Ruby 2.6 (#9YY) Mathieu Jobin

## [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
Expand Down
2 changes: 1 addition & 1 deletion apipie-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/Apipie/apipie-rails"
s.summary = %q{Rails REST API documentation tool}
s.description = %q{Rails REST API documentation tool}
s.required_ruby_version = '>= 2.6.0'
s.required_ruby_version = '>= 2.7.0'

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand Down
4 changes: 1 addition & 3 deletions lib/apipie/error_description.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {})
Expand Down

0 comments on commit 326b130

Please sign in to comment.