Skip to content

Commit

Permalink
Breaking changes requires a major version
Browse files Browse the repository at this point in the history
  • Loading branch information
dploeger committed Mar 6, 2017
1 parent 62faa27 commit c16870a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-rest-client-promise",
"version": "1.0.2",
"version": "2.0.0",
"description": "node-rest-client, but with promises",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions test/promiseTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var should = chai.should();
describe('node-rest-client-promise', function () {
describe('client', function () {
it('should generate the promisified methods', function () {
var client = nodeRestPromised.client({});
var client = nodeRestPromised.Client({});

client.should.hasOwnProperty(
'getPromise',
Expand Down Expand Up @@ -38,7 +38,7 @@ describe('node-rest-client-promise', function () {

it('should provide working promises', function (done) {

var client = nodeRestPromised.client({});
var client = nodeRestPromised.Client({});

client.getPromise(
'https://www.google.de'
Expand Down

0 comments on commit c16870a

Please sign in to comment.