diff --git a/CHANGELOG.md b/CHANGELOG.md index 46e259b..8e5bc2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.3.0](https://github.com/JerryCauser/tcp-exists/compare/v1.2.0...v1.3.0) (2021-12-04) + ## [1.2.0](https://github.com/JerryCauser/tcp-exists/compare/v1.1.2...v1.2.0) (2021-11-01) ### [1.1.2](https://github.com/JerryCauser/tcp-exists/compare/v1.1.1...v1.1.2) (2021-10-29) diff --git a/package-lock.json b/package-lock.json index b19f571..e9af541 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tcp-exists", - "version": "1.2.0", + "version": "1.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tcp-exists", - "version": "1.2.0", + "version": "1.3.0", "license": "MIT", "devDependencies": { "esbuild": "^0.14.2", diff --git a/package.json b/package.json index 1fa88f3..c73a611 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "tcp-exists", - "version": "1.2.0", + "version": "1.3.0", "description": "A small function to check if some tcp endpoint exists.", "type": "module", "main": "cjs/index.js", "module": "index.js", "exports": { ".": { - "require": "./cjs/index.js", + "require": "./cjs/index.js", "default": "./index.js" } }, @@ -51,6 +51,8 @@ "standard-version": "^9.3.2" }, "standard": { - "ignore": ["cjs/index.js"] + "ignore": [ + "cjs/index.js" + ] } }