Skip to content

Commit 78f5892

Browse files
committed
Release 0.0.6
1 parent 02ec86d commit 78f5892

File tree

5 files changed

+23
-3
lines changed

5 files changed

+23
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: node_js
22
node_js:
3-
- '0.6'
43
- '0.8'
54
- '0.10'
65
- '0.11'

History.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
0.0.6 / 2013-07-25
3+
==================
4+
5+
* added user(s) ressource (@Ondrej)
6+
* Create user.js
7+
* fixed test cases
8+
29
0.0.5 / 2013-05-06
310
==================
411

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,21 @@ Milestone.prototype.create = function (params, callback);
8383
Milestone.prototype.update = function (params, callback);
8484
```
8585

86+
## Authors
87+
88+
```bash
89+
$ git summary
90+
91+
project : gitlab
92+
repo age : 4 months
93+
active : 8 days
94+
commits : 17
95+
files : 25
96+
authors :
97+
15 fengmk2 88.2%
98+
2 Ondrej 11.8%
99+
```
100+
86101
## License
87102

88103
(The MIT License)

lib/gitlab.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ Client.prototype.request = function (method, pathname, data, callback) {
8383
}
8484
if (res.statusCode !== 200 && res.statusCode !== 201) {
8585
err = new Error(result ? result.message : 'Unknow Error ' + res.statusCode);
86-
console.log(err)
8786
err.name = 'Gitlab' + res.statusCode + 'Error';
8887
err.data = { resBody: result, requestData: data };
8988
err.headers = res.headers;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-gitlab",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "gitlab",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)