parent
57947d308e
commit
a09d7e1f01
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -2,18 +2,26 @@
|
|||
|
||||
#### Features
|
||||
|
||||
* Your contribution here.
|
||||
|
||||
#### Fixes
|
||||
|
||||
* Your contribution here.
|
||||
|
||||
### 0.25.0 (October 31, 2016)
|
||||
|
||||
#### Features
|
||||
|
||||
* [#524](https://github.com/ruby-grape/grape-swagger/pull/524): Use route tags for global tag set - [@LeFnord](https://github.com/LeFnord).
|
||||
* [#523](https://github.com/ruby-grape/grape-swagger/pull/523): Allow specifying custom tags at the route level - [@jordanfbrown](https://github.com/jordanfbrown).
|
||||
* [#520](https://github.com/ruby-grape/grape-swagger/pull/520): Response model can have required attributes - [@WojciechKo](https://github.com/WojciechKo).
|
||||
* [#510](https://github.com/ruby-grape/grape-swagger/pull/510): Use 'token_owner' instead of 'oauth_token' on Swagger UI endpoint authorization. - [@texpert](https://github.com/texpert).
|
||||
* Your contribution here.
|
||||
|
||||
#### Fixes
|
||||
|
||||
* [#527](https://github.com/ruby-grape/grape-swagger/pull/527): Accepts string as entity - [@LeFnord](https://github.com/LeFnord).
|
||||
* [#515](https://github.com/ruby-grape/grape-swagger/pull/515): Removes limit on model names - [@LeFnord](https://github.com/LeFnord).
|
||||
* [#511](https://github.com/ruby-grape/grape-swagger/pull/511): Fix incorrect data type linking for request params of entity types - [@serggl](https://github.com/serggl).
|
||||
* Your contribution here.
|
||||
|
||||
### 0.24.0 (September 23, 2016)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2012-2014 Tim Vandecasteele and Contributors
|
||||
Copyright (c) 2012-2016 Tim Vandecasteele, ruby-grape and Contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
|
|
|
@ -1208,4 +1208,4 @@ See [CONTRIBUTING](CONTRIBUTING.md).
|
|||
|
||||
## Copyright and License
|
||||
|
||||
Copyright (c) 2012-2014 Tim Vandecasteele and contributors. See [LICENSE.txt](LICENSE.txt) for details.
|
||||
Copyright (c) 2012-2016 Tim Vandecasteele, ruby-grape and contributors. See [LICENSE.txt](LICENSE.txt) for details.
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module GrapeSwagger
|
||||
VERSION = '0.24.0'.freeze
|
||||
VERSION = '0.25.0'.freeze
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue