Skip to content

Commit 029e128

Browse files
author
Chris Moultrie
committed
Bumped Version to 0.9.0
Resolves #54
1 parent 77188a7 commit 029e128

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ JiraApi options:
5353
## Implemented APIs ##
5454

5555
* Authentication
56+
* HTTP
57+
* OAuth
5658
* Projects
5759
* Pulling a project
5860
* List all projects viewable to the user
@@ -80,6 +82,7 @@ JiraApi options:
8082
* Set Max Results
8183
* Set Start-At parameter for results
8284
* Add a worklog
85+
* Add new estimate for worklog
8386
* Add a comment
8487
* Transitions
8588
* List
@@ -95,6 +98,8 @@ JiraApi options:
9598

9699

97100

101+
* _0.9.0 Add OAuth Support and New Estimates on addWorklog (thanks to
102+
[nagyv](https://github.com/nagyv))_
98103
* _0.8.2 Fix URL Format Issues (thanks to
99104
[eduardolundgren](https://github.com/eduardolundgren))_
100105
* _0.8.1 Expanding the transitions options (thanks to

lib/jira.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
//
2222
// Install via git clone:
2323
//
24-
// $ git clone git://git://github.com/steves/node-jira.git
24+
// $ git clone git://github.com/steves/node-jira.git
2525
// $ cd node-jira
2626
// $ npm install
2727
//
@@ -50,10 +50,12 @@
5050
// * `verbose<bool>`: Log some info to the console, usually for debugging
5151
// * `strictSSL<bool>`: Set to false if you have self-signed certs or something non-trustworthy
5252
// * `oauth`: A disctionary of `consumer_key`, `consumer_secret`, `access_token` and `access_token_secret` to be used for OAuth authentication.
53-
//
53+
//
5454
// ## Implemented APIs ##
5555
//
5656
// * Authentication
57+
// * HTTP
58+
// * OAuth
5759
// * Projects
5860
// * Pulling a project
5961
// * List all projects viewable to the user
@@ -81,6 +83,7 @@
8183
// * Set Max Results
8284
// * Set Start-At parameter for results
8385
// * Add a worklog
86+
// * Add new estimate for worklog
8487
// * Add a comment
8588
// * Transitions
8689
// * List
@@ -95,6 +98,8 @@
9598
// ## Changelog ##
9699
//
97100
//
101+
// * _0.9.0 Add OAuth Support and New Estimates on addWorklog (thanks to
102+
// [nagyv](https://github.com/nagyv))_
98103
// * _0.8.2 Fix URL Format Issues (thanks to
99104
// [eduardolundgren](https://github.com/eduardolundgren))_
100105
// * _0.8.1 Expanding the transitions options (thanks to

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira",
3-
"version": "0.8.2",
3+
"version": "0.9.0",
44
"description": "Wrapper for the JIRA API",
55
"author": "Steven Surowiec <[email protected]>",
66
"contributors": [

0 commit comments

Comments
 (0)