Prepare release 1.4.2 (#842)

This commit is contained in:
peter scholz 2021-10-22 07:48:13 +02:00 committed by GitHub
parent 1fea1f8d19
commit 8a5daa8605
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 2 deletions

2
.rspec
View File

@ -1 +1,3 @@
--color
--profile
--format documentation

View File

@ -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-)

View File

@ -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`.

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module GrapeSwagger
VERSION = '1.4.1'
VERSION = '1.4.2'
end