From 8a5daa86056e29ecc8e2e94ce2f668a62f6eeaba Mon Sep 17 00:00:00 2001 From: peter scholz Date: Fri, 22 Oct 2021 07:48:13 +0200 Subject: [PATCH] Prepare release 1.4.2 (#842) --- .rspec | 2 ++ CHANGELOG.md | 7 +++++++ UPGRADING.md | 2 +- lib/grape-swagger/version.rb | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.rspec b/.rspec index 4e1e0d2..c2e2974 100644 --- a/.rspec +++ b/.rspec @@ -1 +1,3 @@ --color +--profile +--format documentation diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ccd263..0219d38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ #### Fixes +* Your contribution here. + + +### 1.4.2 (October 22, 2021) + +#### Fixes + * [#840](https://github.com/ruby-grape/grape-swagger/pull/840): Fixes documentation of `additionalProperties` field when used with array parameters, or when setting it to `false` - [@magni-](https://github.com/magni-) * [#841](https://github.com/ruby-grape/grape-swagger/pull/839): Fixes `type` and `format` values for object fields nested in an array ([#832](https://github.com/ruby-grape/grape-swagger/issue/832)) - [@magni-](https://github.com/magni-) * [#839](https://github.com/ruby-grape/grape-swagger/pull/839): Fixes documentation of `false` or `nil` default parameter values - [@magni-](https://github.com/magni-) diff --git a/UPGRADING.md b/UPGRADING.md index ffb2f27..cc681ba 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -1,6 +1,6 @@ ## Upgrading Grape-swagger -### Upgrading to >= 1.4.1 +### Upgrading to >= 1.4.2 - `additionalProperties` has been deprecated and will be removed in a future version of `grape-swagger`. It has been replaced with `additional_properties`. diff --git a/lib/grape-swagger/version.rb b/lib/grape-swagger/version.rb index d94226e..a61112e 100644 --- a/lib/grape-swagger/version.rb +++ b/lib/grape-swagger/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module GrapeSwagger - VERSION = '1.4.1' + VERSION = '1.4.2' end