From 36423f43d9506a3a8f776705d3f8e6e09ea17e63 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 24 Jun 2024 12:41:43 +0000 Subject: [PATCH] chore(release): 2.3.0-beta.1 [ci skip] # [2.3.0-beta.1](https://github.com/Bugs5382/node-hl7-client/compare/v2.2.0...v2.3.0-beta.1) (2024-06-24) ### Bug Fixes * clear connection timer ([9d9f296](https://github.com/Bugs5382/node-hl7-client/commit/9d9f2965906417b4027640950e63d8d9ca7f5314)), closes [#100](https://github.com/Bugs5382/node-hl7-client/issues/100) * connections and threads failing to close ([#102](https://github.com/Bugs5382/node-hl7-client/issues/102)) ([013d95e](https://github.com/Bugs5382/node-hl7-client/commit/013d95ec0a57f7150d48e17e0248b793380219e0)) * lint issue ([2a35e19](https://github.com/Bugs5382/node-hl7-client/commit/2a35e1935ab3071bfa487478f2ae5184add1f200)) * lint issue ([80d7667](https://github.com/Bugs5382/node-hl7-client/commit/80d7667ba32a706783b44ee8644cf23d7eecf0ec)) * race condition ([4b9e6cf](https://github.com/Bugs5382/node-hl7-client/commit/4b9e6cf880973c3e8921f696c6f467f1cc595c63)), closes [#100](https://github.com/Bugs5382/node-hl7-client/issues/100) * race condition ([84f0a89](https://github.com/Bugs5382/node-hl7-client/commit/84f0a898670315fec4d7660d89efcdcfab180d7d)), closes [#100](https://github.com/Bugs5382/node-hl7-client/issues/100) * race condition ([#106](https://github.com/Bugs5382/node-hl7-client/issues/106)) ([1a8bf3e](https://github.com/Bugs5382/node-hl7-client/commit/1a8bf3e267bfcff2be1b11ab98a255fc7480ba8a)) ### Features * minor code cleanups ([#105](https://github.com/Bugs5382/node-hl7-client/issues/105)) ([da37ee1](https://github.com/Bugs5382/node-hl7-client/commit/da37ee101b959ff7a131775aa7b2c2a1b971ae1c)) * typedoc working! ([6b884ff](https://github.com/Bugs5382/node-hl7-client/commit/6b884ff6c5a6e43bbb52c4de37a8afec229c599e)), closes [#37](https://github.com/Bugs5382/node-hl7-client/issues/37) --- CHANGELOG.md | 18 ++++++++++++++++++ package.json | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ce6e70..4d465f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# [2.3.0-beta.1](https://github.com/Bugs5382/node-hl7-client/compare/v2.2.0...v2.3.0-beta.1) (2024-06-24) + + +### Bug Fixes + +* clear connection timer ([9d9f296](https://github.com/Bugs5382/node-hl7-client/commit/9d9f2965906417b4027640950e63d8d9ca7f5314)), closes [#100](https://github.com/Bugs5382/node-hl7-client/issues/100) +* connections and threads failing to close ([#102](https://github.com/Bugs5382/node-hl7-client/issues/102)) ([013d95e](https://github.com/Bugs5382/node-hl7-client/commit/013d95ec0a57f7150d48e17e0248b793380219e0)) +* lint issue ([2a35e19](https://github.com/Bugs5382/node-hl7-client/commit/2a35e1935ab3071bfa487478f2ae5184add1f200)) +* lint issue ([80d7667](https://github.com/Bugs5382/node-hl7-client/commit/80d7667ba32a706783b44ee8644cf23d7eecf0ec)) +* race condition ([4b9e6cf](https://github.com/Bugs5382/node-hl7-client/commit/4b9e6cf880973c3e8921f696c6f467f1cc595c63)), closes [#100](https://github.com/Bugs5382/node-hl7-client/issues/100) +* race condition ([84f0a89](https://github.com/Bugs5382/node-hl7-client/commit/84f0a898670315fec4d7660d89efcdcfab180d7d)), closes [#100](https://github.com/Bugs5382/node-hl7-client/issues/100) +* race condition ([#106](https://github.com/Bugs5382/node-hl7-client/issues/106)) ([1a8bf3e](https://github.com/Bugs5382/node-hl7-client/commit/1a8bf3e267bfcff2be1b11ab98a255fc7480ba8a)) + + +### Features + +* minor code cleanups ([#105](https://github.com/Bugs5382/node-hl7-client/issues/105)) ([da37ee1](https://github.com/Bugs5382/node-hl7-client/commit/da37ee101b959ff7a131775aa7b2c2a1b971ae1c)) +* typedoc working! ([6b884ff](https://github.com/Bugs5382/node-hl7-client/commit/6b884ff6c5a6e43bbb52c4de37a8afec229c599e)), closes [#37](https://github.com/Bugs5382/node-hl7-client/issues/37) # [2.2.0-beta.1](https://github.com/Bugs5382/node-hl7-client/compare/v2.1.1-beta.3...v2.2.0-beta.1) (2024-06-24) diff --git a/package.json b/package.json index 477b349..15e2b8a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-hl7-client", - "version": "2.2.0-beta.1", + "version": "2.3.0-beta.1", "description": "A pure Node.js HL7 Client that allows for communication to a HL7 Broker/Server that can send properly formatted HL7 messages with ease.It can also parse and then you can extract message segments out.", "module": "./lib/esm/index.js", "main": "./lib/cjs/index.js",