From d48601a8a90c3d22fade68d09b4240739fb44a46 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 9 Jan 2023 08:14:43 +0000 Subject: [PATCH] chore(release): 2.2.4 [skip ci] ## [2.2.4](https://github.com/eficode/wait-for/compare/v2.2.3...v2.2.4) (2023-01-09) ### Bug Fixes * `wget` in alpine runs into an endless retry loop ([#100](https://github.com/eficode/wait-for/issues/100)) ([b15c461](https://github.com/eficode/wait-for/commit/b15c46119a7a2851c29a7e687d71eafb9fb8750a)) --- CHANGELOG.md | 7 +++++++ package-lock.json | 2 +- package.json | 2 +- wait-for | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bdccab..f015353 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.2.4](https://github.com/eficode/wait-for/compare/v2.2.3...v2.2.4) (2023-01-09) + + +### Bug Fixes + +* `wget` in alpine runs into an endless retry loop ([#100](https://github.com/eficode/wait-for/issues/100)) ([b15c461](https://github.com/eficode/wait-for/commit/b15c46119a7a2851c29a7e687d71eafb9fb8750a)) + ## [2.2.3](https://github.com/eficode/wait-for/compare/v2.2.2...v2.2.3) (2022-03-05) diff --git a/package-lock.json b/package-lock.json index fe3b6e7..d0cff28 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wait-for", - "version": "2.2.3", + "version": "2.2.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 54c1269..9809dc0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wait-for", - "version": "2.2.3", + "version": "2.2.4", "scripts": { "test": "./node_modules/.bin/bats wait-for.bats", "test:docker": "docker build -t wait-for-test . && docker run --rm -it wait-for-test" diff --git a/wait-for b/wait-for index eb6265f..ea876df 100755 --- a/wait-for +++ b/wait-for @@ -22,7 +22,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -VERSION="2.2.3" +VERSION="2.2.4" set -- "$@" -- "$TIMEOUT" "$QUIET" "$PROTOCOL" "$HOST" "$PORT" "$result" TIMEOUT=15