From 5b925fc9b36160c4c4ddead0ff177d193653f734 Mon Sep 17 00:00:00 2001 From: Mathieu Jobin Date: Tue, 29 Mar 2022 17:43:33 +0900 Subject: [PATCH] release 0.6.0 - CHANGELOG update --- CHANGELOG.md | 7 +++++++ lib/apipie-rails.rb | 4 ---- lib/apipie/version.rb | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 204485bc..8d40123d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ Changelog =========== + +## [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) +* only depends on actionpack and activesupport [#741](https://github.com/Apipie/apipie-rails/pull/741) (Mathieu Jobin) +* language fix, fallback to default locale [#726](https://github.com/Apipie/apipie-rails/pull/726) (Alex Coomans) + ## [v0.5.20](https://github.com/Apipie/apipie-rails/tree/v0.5.20) (2022-03-16) [Full Changelog](https://github.com/Apipie/apipie-rails/compare/v0.5.19...v0.5.20) * Update rel-eng (Oleh Fedorenko) diff --git a/lib/apipie-rails.rb b/lib/apipie-rails.rb index 139a6338..cae71566 100644 --- a/lib/apipie-rails.rb +++ b/lib/apipie-rails.rb @@ -23,7 +23,3 @@ require 'apipie/extractor' require "apipie/version" require "apipie/swagger_generator" - -if Rails.version.start_with?("3.0") - warn 'Warning: apipie-rails is not going to support Rails 3.0 anymore in future versions' -end diff --git a/lib/apipie/version.rb b/lib/apipie/version.rb index 008f60b8..5935dfb4 100644 --- a/lib/apipie/version.rb +++ b/lib/apipie/version.rb @@ -1,3 +1,3 @@ module Apipie - VERSION = "0.5.20" + VERSION = "0.6.0" end