Skip to content

Commit 590a029

Browse files
committed
Added CHANGELOG.
1 parent de9184e commit 590a029

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
### Next
2+
3+
* [41](https://github.com/BrandyMint/grape-swagger-rails/pull/41): Fixed compatibility with grape-swagger 0.8.0 - [@dblock](https://github.com/dblock).
4+
* Your contribution here.
5+
6+
### 0.0.10 (September 30, 2014)
7+
8+
* [33](https://github.com/BrandyMint/grape-swagger-rails/pull/33): Fix: make the dummy app runnable - [@dblock](https://github.com/dblock).
9+
* [33](https://github.com/BrandyMint/grape-swagger-rails/pull/33): Fix: headers default to nil - [@dblock](https://github.com/dblock).
10+
* [33](https://github.com/BrandyMint/grape-swagger-rails/pull/33): Added support for GrapeSwaggerRails.options.headers - [@dblock](https://github.com/dblock).
11+
* [#31](https://github.com/BrandyMint/grape-swagger-rails/pull/31): Get Swagger-UI from dist - [@dblock](https://github.com/dblock).
12+
* [#29](https://github.com/BrandyMint/grape-swagger-rails/pull/29): Add Rails 4.1 support - [@aaronchi](https://github.com/aaronchi).
13+
* [#21](https://github.com/BrandyMint/grape-swagger-rails/pull/21): Corrected initializer paths - [@mrclmrvn](https://github.com/mrclmrvn).
14+
* [#23](https://github.com/BrandyMint/grape-swagger-rails/pull/23): Added auth bearer support - [@shinnyx](https://github.com/shinnyx).
15+
* [#14](https://github.com/BrandyMint/grape-swagger-rails/pull/14): Added app_name to configure title of the app - [@ghilead](https://github.com/ghilead).
16+
* [#12](https://github.com/BrandyMint/grape-swagger-rails/pull/12): Fix: SwaggerUI url is combined with appUrl - [@ghilead](https://github.com/ghilead).
17+
18+
### 0.0.8 (February 6, 2014)
19+
20+
* [#11](https://github.com/BrandyMint/grape-swagger-rails/pull/11): Fixed image loading - [@bitboxer](https://github.com/bitboxer).
21+
22+
### 0.0.7 (February 5, 2014)
23+
24+
* [#7](https://github.com/BrandyMint/grape-swagger-rails/pull/7): Updated to Swagger-UI 2.0.3 - [@joelvh](https://github.com/joelvh).
25+
* [#6](https://github.com/BrandyMint/grape-swagger-rails/pull/6): Added appName and appUrl configuration options - [@swistaczek](https://github.com/swistaczek).
26+
27+
### 0.0.4 (July 16, 2013)
28+
29+
* Configure discoveryUrl from Rails - [@dapi](https://github.com/dapi).
30+
* Added default support for all HTTP methods - [@mtavaresOS](https://github.com/mtavaresOS).
31+
32+
### 0.0.3 (May 24, 2013)
33+
34+
* Converted to Rails Engine - [@unloved](https://github.com/unloved).
35+
36+
### 0.0.1 (April 5, 2013)
37+
38+
* Initial public release - [@radanisk](https://github.com/Radanisk).

CONTRIBUTING.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ Navigate to http://localhost:3000/swagger.
7373

7474
Document any external behavior in the [README](README.md).
7575

76+
## Update Changelog
77+
78+
Add a line to [CHANGELOG](CHANGELOG.md) under *Next Release*.
79+
Make it look like every other line, including your name and link to your Github account.
80+
7681
## Push
7782

7883
```
@@ -84,6 +89,19 @@ git push origin my-feature-branch
8489
Go to https://github.com/contributor/grape and select your feature branch.
8590
Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
8691

92+
## Update CHANGELOG Again
93+
94+
Update the [CHANGELOG](CHANGELOG.md) with the pull request number. A typical entry looks as follows.
95+
96+
```
97+
* [#123](https://github.com/TinkerDev/grape-swagger-rails/pull/123): Reticulated splines - [@contributor](https://github.com/contributor).
98+
```
99+
100+
Amend your previous commit and force push the changes.
101+
102+
```
103+
git commit --amend
104+
git push origin my-feature-branch -f
87105
## Rebase
88106
89107
If you've been working on a change for a while, rebase with upstream/master.

0 commit comments

Comments
 (0)