Skip to content

Commit

Permalink
v0.4.13: Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jas- committed Aug 26, 2018
1 parent c5f639d commit 92eac0e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013 - 2016 Jason Gerfen <jason.gerfen@gmail.com>
Copyright (c) 2013 - 2018 Jason Gerfen <jason.gerfen@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libnmap",
"version": "v0.4.11",
"version": "v0.4.12",
"description": "libnmap for node.js",
"author": "Jason Gerfen <jason.gerfen@gmail.com>",
"keywords": [
Expand Down Expand Up @@ -33,9 +33,9 @@
"test": "./node_modules/.bin/mocha -R spec"
},
"dependencies": {
"async": "^2.6.0",
"async": "^2.6.1",
"cidr-js": "^2.3.1",
"deepmerge": "^2.1.0",
"deepmerge": "^2.1.1",
"hasbin": "^1.2.3",
"ip-address": "^5.8.9",
"netmask": "^1.0.6",
Expand Down
7 changes: 3 additions & 4 deletions test/errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('nmap', function() {
});
});

it('invalid host range (host)', function(done) {
it('invalid host range', function(done) {
opts = {
range: ['10.0.5.256']
};
Expand All @@ -42,7 +42,7 @@ describe('nmap', function() {
});
});

it('invalid host range (range)', function(done) {
it('invalid ip range', function(done) {
opts = {
range: ['10.0.2.5-256']
};
Expand All @@ -53,7 +53,7 @@ describe('nmap', function() {
});
});

it('invalid host range (CIDR)', function(done) {
it('invalid CIDR range', function(done) {
opts = {
range: ['256.128.0/17']
};
Expand Down Expand Up @@ -101,6 +101,5 @@ describe('nmap', function() {
done();
});
});

});
});

0 comments on commit 92eac0e

Please sign in to comment.