From 92eac0ede90113aa9ed9fd460f041b2c379132c7 Mon Sep 17 00:00:00 2001 From: Jas- <jason.gerfen@gmail.com> Date: Sun, 26 Aug 2018 14:31:04 +0000 Subject: [PATCH] v0.4.13: Version bump --- LICENSE | 2 +- package.json | 6 +++--- test/errors.js | 7 +++---- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index 576422f..d9bab25 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/package.json b/package.json index 5f5dcdc..6ca4884 100644 --- a/package.json +++ b/package.json @@ -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": [ @@ -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", diff --git a/test/errors.js b/test/errors.js index 57645f9..69ac90e 100644 --- a/test/errors.js +++ b/test/errors.js @@ -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'] }; @@ -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'] }; @@ -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'] }; @@ -101,6 +101,5 @@ describe('nmap', function() { done(); }); }); - }); });