-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #195 from cybertk/0.5.0
0.5.0
- Loading branch information
Showing
24 changed files
with
284 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#%RAML 0.8 | ||
|
||
title: Address Book API | ||
baseUri: http://example.api.com/{version} | ||
version: v1 | ||
|
||
/contacts: | ||
post: | ||
body: | ||
application/json: | ||
schema: | | ||
type: 'string' | ||
name: 'string' | ||
example: | | ||
{ "type": "Kulu", "name": "Mike" } | ||
responses: | ||
201: | ||
body: | ||
application/json: | ||
schema: | | ||
type: 'string' | ||
name: 'string' | ||
example: | | ||
{ "type": "Kulu", "name": "Mike" } | ||
/contacts/{id} | ||
delete: | ||
responses: | ||
204: | ||
put: | ||
body: | ||
application/json: | ||
schema: | | ||
type: 'string' | ||
name: 'string' | ||
example: | | ||
{ "type": "Kulu", "name": "Mike" } | ||
responses: | ||
201: | ||
body: | ||
application/json: | ||
schema: | | ||
type: 'string' | ||
name: 'string' | ||
example: | | ||
{ "type": "Kulu", "name": "Mike" } | ||
get: | ||
responses: | ||
200: | ||
body: | ||
application/json: | ||
schema: | | ||
[ | ||
type: 'string' | ||
name: 'string' | ||
phone: 'string' | ||
] | ||
example: | | ||
{ | ||
"type": "contact", | ||
"name": "Jenny", | ||
"phone": "867-5309" | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,4 @@ traits: | |
delete: | ||
description: | | ||
This method will *delete* an **individual song** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,4 @@ traits: | |
delete: | ||
description: | | ||
This method will *delete* an **individual song** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,4 @@ version: v1 | |
example: | | ||
{ "title": "A Beautiful Day", "artist": "Mike" } | ||
text/plain: | ||
|
Oops, something went wrong.
2279bae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nikita, I didn't communicate/document this, but I'd prefer to follow "normal" semantic versioning of releases. So from this aspect, we don't release versions with odd minor numbers. Concept would be to do all development in the "next up" odd minor release number, then release with an even minor release number. In this case, we would have added new features/bug fixes, tested them internally on the 0.5.x branch, and (when satisfied) merged into 0.6.0 branch for release. I think we should vote on when a new release is to occur, or at least give a drop-dead day with warning. I'll attempt to document the process as explained above soon, but please don't release stuff on a whim; I had updates which would have made this much more palatable for people merging our changes...