Skip to content

Commit

Permalink
Fixing Labels
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalrymple committed Jun 23, 2017
1 parent f1c5852 commit 2b02d1e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,17 @@ MIT
Changelog
=========

[1.0.6](https://github.com/jdalrymple/node-gitlab-api/commit/03a22b46a62d7b68937575b0b74b6fd3496f7cbf) (2017-06-23)
------------------
- Fixing bug within the Labels API; Missing required argument.

[1.0.5](https://github.com/jdalrymple/node-gitlab-api/commit/03a22b46a62d7b68937575b0b74b6fd3496f7cbf) (2017-06-23)
------------------
- Fixing bug within the delete API calls. It was missing query parameters

[1.0.4](https://github.com/jdalrymple/node-gitlab-api/commit/9d9ef2615c6dd778a3fb1c6140d5ce009c421bb1) (2017-06-23)
------------------
- Adding more to the labels API
- Adding more to the Labels API
- Cleaned up the Issues class

[1.0.3](https://github.com/jdalrymple/node-gitlab-api/commit/fe5a5fbb8d01fb670b7c7b14ce2c5b7f30d71fe5) (2017-06-23)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-gitlab-api",
"version": "1.0.5",
"version": "1.0.6",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"main": "src/index.js",
"directories": {},
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Labels extends BaseModel {
super(...args);
}

all(options = {}) {
all(projectId, options = {}) {
options.page = options.page || 1;
options.per_page = options.per_page || 100;

Expand Down

0 comments on commit 2b02d1e

Please sign in to comment.