From f26cee5a7cd1f5c76fd58ad9db13c5c8916ddf38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Tue, 9 Jan 2024 17:45:41 +0100 Subject: [PATCH] Version 2.0.0 --- README.md | 11 ++++++++++- package-lock.json | 4 ++-- package.json | 9 ++++++--- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 777d4f1..46bf178 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # pick-port +[![][npm-shield-pick-port]][npm-pick-port] +[![][github-actions-shield-pick-port]][github-actions-pick-port] + Get an available TCP or UDP port for the given IP address. ```bash @@ -47,10 +50,16 @@ Resolves with an available port or rejects with an error otherwise. The `reserveTimeout` option provides the application with the required time to bind the free port before it is given again on a future call to this library. -## Author +## Authors - José Luis Millán [[github](https://github.com/jmillan/)] +- Iñaki Baz Castillo [[website](https://inakibaz.me)|[github](https://github.com/ibc/)] ## License [ISC](./LICENSE) + +[npm-shield-pick-port]: https://img.shields.io/npm/v/pick-port.svg +[npm-pick-port]: https://npmjs.org/package/pick-port +[github-actions-shield-pick-port]: https://github.com/versatica/pick-port/actions/workflows/pick-port.yaml/badge.svg +[github-actions-pick-port]: https://github.com/versatica/pick-port/actions/workflows/pick-port.yaml diff --git a/package-lock.json b/package-lock.json index 5980818..9fe7538 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pick-port", - "version": "2.0.0-pre", + "version": "2.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pick-port", - "version": "2.0.0-pre", + "version": "2.0.0", "license": "MIT", "dependencies": { "debug": "^4.3.4" diff --git a/package.json b/package.json index 9763311..a601d35 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,18 @@ { "name": "pick-port", - "version": "2.0.0-pre", + "version": "2.0.0", "description": "Get a free TCP or UDP port for the given IP address", "author": "José Luis Millán (https://github.com/jmillan)", + "contributors": [ + "Iñaki Baz Castillo (https://inakibaz.me)" + ], "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/jmillan/pick-port.git" + "url": "https://github.com/versatica/pick-port.git" }, "bugs": { - "url": "https://github.com/jmillan/pick-port/issues" + "url": "https://github.com/versatica/pick-port/issues" }, "main": "lib/index.js", "types": "lib/index.d.ts",