Skip to content

Commit c750ca7

Browse files
Version bump to 0.9.1
fixed broken jasmine test
1 parent 36b2fb4 commit c750ca7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,10 @@ JiraApi options:
9797
## Changelog ##
9898

9999

100-
100+
* _0.9.1 Smaller fixes and features added
101+
* updateVersion method
102+
* Support for @ in usernames
103+
* Handling empty responses in getIssue
101104
* _0.9.0 Add OAuth Support and New Estimates on addWorklog (thanks to
102105
[nagyv](https://github.com/nagyv))_
103106
* _0.8.2 Fix URL Format Issues (thanks to

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"name": "jira",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Wrapper for the JIRA API",
55
"author": "Steven Surowiec <[email protected]>",
66
"contributors": [
7-
"Chris Moultrie <[email protected]>"
7+
"Chris Moultrie <[email protected]>",
8+
"Lucas Vogelsang <[email protected]>"
89
],
910
"homepage": "http://github.com/steves/node-jira",
1011
"repository": {

spec/jira.spec.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ describe "Node Jira Tests", ->
466466
# Successful Request
467467
@jira.request.mostRecentCall.args[1] null, statusCode:200,
468468
transitions:"someTransitions"
469-
expect(@cb).toHaveBeenCalledWith null, "someTransitions"
469+
expect(@cb).toHaveBeenCalledWith null, {transitions:"someTransitions"}
470470

471471
it "Transitions an issue", ->
472472
options =

0 commit comments

Comments
 (0)