Skip to content

Commit

Permalink
Remove Rails 4.x support, Minimum ruby is now 2.6, Update CHANGELOG (#…
Browse files Browse the repository at this point in the history
…747)

and bump version
  • Loading branch information
mathieujobin authored Mar 29, 2022
1 parent 5591b14 commit 716b9ed
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 148 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,12 @@ jobs:
- '3.0'
- 3.1
gemfile:
- Gemfile.rails42
- Gemfile.rails50
- Gemfile.rails51
- Gemfile.rails52 # Min ruby 2.2.2
- Gemfile.rails60 # Min ruby 2.5.0
- Gemfile.rails61 # Min ruby 2.5.0
exclude:
- gemfile: Gemfile.rails42
ruby: 2.7
- gemfile: Gemfile.rails42
ruby: '3.0'
- gemfile: Gemfile.rails42
ruby: 3.1
- gemfile: Gemfile.rails50
ruby: 2.7
- gemfile: Gemfile.rails50
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
===========

## [v0.7.0](https://github.com/Apipie/apipie-rails/tree/v0.7.0) (2022-03-30)
[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v0.6.0...v0.7.0)
* ArgumentError (invalid byte sequence in UTF-8) [#746](https://github.com/Apipie/apipie-rails/pull/746) (David Milanese)
* Fix allow_blank does not work [#733](https://github.com/Apipie/apipie-rails/pull/733) (CHEN Song)
* Fix schema generation for param descriptions using the array validator in option [#732](https://github.com/Apipie/apipie-rails/pull/732) (Frank Hock)
* Remove support for Rails 4 and Ruby <= 2.5 [#747](https://github.com/Apipie/apipie-rails/pull/747) (Mathieu Jobin)

## [v0.6.0](https://github.com/Apipie/apipie-rails/tree/v0.6.0) (2022-03-29)
[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v0.5.20...v0.6.0)
* Ruby 3.0 fixes [#716](https://github.com/Apipie/apipie-rails/pull/716) (hank-spokeo)
Expand Down
6 changes: 3 additions & 3 deletions apipie-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Gem::Specification.new do |s|
s.homepage = "http://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.0.0'
s.required_ruby_version = '>= 2.6.0'

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]

s.add_dependency "actionpack", ">= 4.1"
s.add_dependency "activesupport", ">= 4.1"
s.add_dependency "actionpack", ">= 5.0"
s.add_dependency "activesupport", ">= 5.0"
s.add_development_dependency "rspec-rails", "~> 3.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "minitest"
Expand Down
15 changes: 0 additions & 15 deletions gemfiles/Gemfile.rails42

This file was deleted.

122 changes: 0 additions & 122 deletions gemfiles/Gemfile.rails42.lock

This file was deleted.

2 changes: 1 addition & 1 deletion lib/apipie/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Apipie
VERSION = "0.6.0"
VERSION = "0.7.0"
end

0 comments on commit 716b9ed

Please sign in to comment.