From cba05eed44ad7aff9a1bb4427a01a401574b56fd Mon Sep 17 00:00:00 2001 From: Keegan Leitz Date: Fri, 30 Mar 2018 14:17:26 -0400 Subject: [PATCH 1/2] fix misleading typo in README: notes -> detail --- CHANGELOG.md | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bac5a1d9..c5bbee54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * [#667](https://github.com/ruby-grape/grape-swagger/pull/667): Make route summary optional - [@obduk](https://github.com/obduk). * [#670](https://github.com/ruby-grape/grape-swagger/pull/670): Add support for deprecated field - [@ioanatia](https://github.com/ioanatia). +* [#672](https://github.com/ruby-grape/grape-swagger/pull/672): Rename 'notes' to 'detail' in README - [@kjleitz](https://github.com/kjleitz). * Your contribution here. diff --git a/README.md b/README.md index 78763581..1ca8ecf7 100644 --- a/README.md +++ b/README.md @@ -1215,7 +1215,7 @@ class NamespaceApi < Grape::API end desc 'This gets something.', - notes: '_test_' + detail: '_test_' get '/simple' do { bla: 'something' } From 6ae76416d99635b128ddeecf85ba33721612a313 Mon Sep 17 00:00:00 2001 From: Keegan Leitz Date: Sat, 31 Mar 2018 13:55:15 -0400 Subject: [PATCH 2/2] fix spacing in log of 667, move log of 672 to 'Fixes' --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5bbee54..fb88abff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,15 @@ #### Features -* [#667](https://github.com/ruby-grape/grape-swagger/pull/667): Make route summary optional - [@obduk](https://github.com/obduk). +* [#667](https://github.com/ruby-grape/grape-swagger/pull/667): Make route summary optional - [@obduk](https://github.com/obduk). * [#670](https://github.com/ruby-grape/grape-swagger/pull/670): Add support for deprecated field - [@ioanatia](https://github.com/ioanatia). -* [#672](https://github.com/ruby-grape/grape-swagger/pull/672): Rename 'notes' to 'detail' in README - [@kjleitz](https://github.com/kjleitz). * Your contribution here. #### Fixes * [#664](https://github.com/ruby-grape/grape-swagger/pull/662): Removed all references to obsolete `hide_format` parameter - [@jonmchan](https://github.com/jonmchan). +* [#672](https://github.com/ruby-grape/grape-swagger/pull/672): Rename 'notes' to 'detail' in README - [@kjleitz](https://github.com/kjleitz). ### 0.28.0 (February 3, 2018)