From 57d6c5a3d60efd26da15fc8877ef2b24b9d6e801 Mon Sep 17 00:00:00 2001 From: Dominic Griesel Date: Mon, 9 May 2022 10:38:00 +0200 Subject: [PATCH] chore: release v3.0.1 * BREAKING: The function signature of `defineAdditionalTests` in integration tests has changed. All user-defined integration tests must now be grouped in one or more `suite` blocks. The adapter will now only be started at the beginning of each suite. See the documentation for details. * BREAKING: The function signature of `harness.startAdapterAndWait` has changed. It now accepts a boolean as the first parameter which controls whether to wait for the `alive` state (`false`) or the `info.connection` state (`true`). --- CHANGELOG.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0067b8a4..ed428720 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ PLACEHOLDER for next version: ## __WORK IN PROGRESS__ --> -## 3.0.0 (2022-05-09) +## 3.0.1 (2022-05-09) * BREAKING: The function signature of `defineAdditionalTests` in integration tests has changed. All user-defined integration tests must now be grouped in one or more `suite` blocks. The adapter will now only be started at the beginning of each suite. See the documentation for details. * BREAKING: The function signature of `harness.startAdapterAndWait` has changed. It now accepts a boolean as the first parameter which controls whether to wait for the `alive` state (`false`) or the `info.connection` state (`true`). diff --git a/package-lock.json b/package-lock.json index 6d5009c3..81852bc4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@iobroker/testing", - "version": "3.0.0", + "version": "3.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@iobroker/testing", - "version": "3.0.0", + "version": "3.0.1", "license": "MIT", "dependencies": { "alcalzone-shared": "~4.0.1", diff --git a/package.json b/package.json index 52a918d3..29406fff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@iobroker/testing", - "version": "3.0.0", + "version": "3.0.1", "description": "Shared utilities for adapter and module testing in ioBroker", "main": "build/index.js", "types": "build/index.d.ts",