From 33c7a460ff808ad89c1e2349d2184572bb34e5a0 Mon Sep 17 00:00:00 2001 From: CRBroughton Date: Fri, 19 Apr 2024 21:21:16 +0100 Subject: [PATCH] feat: :bookmark: 0.2.0 - Add isArray, isNonArray and NotEquals types --- .changeset/lazy-seas-tan.md | 5 ----- .changeset/nasty-needles-fold.md | 5 ----- CHANGELOG.md | 7 +++++++ package.json | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 .changeset/lazy-seas-tan.md delete mode 100644 .changeset/nasty-needles-fold.md diff --git a/.changeset/lazy-seas-tan.md b/.changeset/lazy-seas-tan.md deleted file mode 100644 index c685267..0000000 --- a/.changeset/lazy-seas-tan.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@crbroughton/ts-test-utils": minor ---- - -Add the isArray and isNonArray - Checks if a type is either an array or not an array diff --git a/.changeset/nasty-needles-fold.md b/.changeset/nasty-needles-fold.md deleted file mode 100644 index 3034ff0..0000000 --- a/.changeset/nasty-needles-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@crbroughton/ts-test-utils": minor ---- - -Add the NotEquals type - Checks if a type does not equal another type diff --git a/CHANGELOG.md b/CHANGELOG.md index 7342f11..d61447c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # @crbroughton/ts-test-utils +## 0.2.0 + +### Minor Changes + +- 65f5143: Add the isArray and isNonArray - Checks if a type is either an array or not an array +- c5bb362: Add the NotEquals type - Checks if a type does not equal another type + ## 0.1.0 ### Minor Changes diff --git a/package.json b/package.json index 22e721e..8963c6c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@crbroughton/ts-test-utils", "type": "module", - "version": "0.1.0", + "version": "0.2.0", "description": "A collection of testing helper types", "author": "Craig R Broughton", "license": "MIT",