Skip to content

Commit 3e883f1

Browse files
committed
Release 0.1.1
1 parent 95a4847 commit 3e883f1

File tree

7 files changed

+35
-14
lines changed

7 files changed

+35
-14
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.8'
43
- '0.10'
54
- '0.11'
65
script: make test-coveralls

AUTHORS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Ordered by date of first contribution.
2+
# Auto-generated by 'contributors' on Tue, 13 May 2014 03:03:39 GMT.
3+
# https://github.com/xingrz/node-contributors
4+
5+
fengmk2 <[email protected]> (https://github.com/fengmk2)
6+
shigeru.nakajima <[email protected]> (https://github.com/ledsun)

History.md

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

2+
0.1.1 / 2014-05-13
3+
==================
4+
5+
* Add MergeRequest resource. (@ledsun)
6+
27
0.1.0 / 2013-08-07
38
==================
49

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This software is licensed under the MIT License.
22

3-
Copyright (C) 2013 by fengmk2 <[email protected]>
3+
Copyright (C) 2013 - 2014 fengmk2 <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ install:
77
@npm install
88

99
test: install
10-
@NODE_ENV=test ./node_modules/mocha/bin/mocha \
10+
@NODE_ENV=test ./node_modules/.bin/mocha \
1111
--reporter $(REPORTER) \
1212
--timeout $(TIMEOUT) \
1313
$(MOCHA_OPTS) \
@@ -21,8 +21,15 @@ test-cov:
2121

2222
test-coveralls: test
2323
@echo TRAVIS_JOB_ID $(TRAVIS_JOB_ID)
24-
@-$(MAKE) test MOCHA_OPTS='--require blanket' REPORTER=mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js
24+
@-$(MAKE) test MOCHA_OPTS='--require blanket' REPORTER=mocha-lcov-reporter | ./node_modules/.bin/coveralls
2525

2626
test-all: test test-cov
2727

28+
autod: install
29+
@./node_modules/.bin/autod -w --prefix "~"
30+
@$(MAKE) install
31+
32+
contributors: install
33+
@./node_modules/.bin/contributors -f plain -o AUTHORS
34+
2835
.PHONY: test

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
gitlab [![Build Status](https://secure.travis-ci.org/repo-utils/gitlab.png)](http://travis-ci.org/repo-utils/gitlab)
2-
[![Coverage Status](https://coveralls.io/repos/repo-utils/gitlab/badge.png)](https://coveralls.io/r/repo-utils/gitlab)
1+
gitlab
32
=======
43

4+
[![Build Status](https://secure.travis-ci.org/repo-utils/gitlab.png)](http://travis-ci.org/repo-utils/gitlab)
5+
[![Coverage Status](https://coveralls.io/repos/repo-utils/gitlab/badge.png)](https://coveralls.io/r/repo-utils/gitlab)
6+
57
![logo](https://raw.github.com/repo-utils/gitlab/master/logo.png)
68

79
Gitlab API nodejs client.
@@ -190,7 +192,7 @@ $ git summary
190192

191193
(The MIT License)
192194

193-
Copyright (c) 2013 fengmk2 &lt;[email protected]&gt;
195+
Copyright (c) 2013 - 2014 fengmk2 &lt;[email protected]&gt;
194196

195197
Permission is hereby granted, free of charge, to any person obtaining
196198
a copy of this software and associated documentation files (the

package.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-gitlab",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Gitlab API nodejs client.",
55
"main": "index.js",
66
"scripts": {
@@ -9,17 +9,19 @@
99
"travis-cov": { "threshold": 100 }
1010
},
1111
"dependencies": {
12-
"restful-client": ">=0.0.4",
13-
"debug": ">=0.7.2"
12+
"debug": "~0.8.1",
13+
"restful-client": "~0.0.4"
1414
},
1515
"devDependencies": {
16-
"should": "*",
17-
"pedding": "*",
16+
"autod": "*",
1817
"blanket": "*",
19-
"travis-cov": "*",
18+
"contributors": "*",
2019
"coveralls": "*",
20+
"mocha": "*",
2121
"mocha-lcov-reporter": "*",
22-
"mocha": "*"
22+
"pedding": "~0.0.3",
23+
"should": "~3.3.1",
24+
"travis-cov": "*"
2325
},
2426
"homepage": "https://github.com/repo-utils/gitlab",
2527
"repository": {

0 commit comments

Comments
 (0)