From fa5e901fd93a726cc2b1e2c2af64c6aa10f2434c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 29 Sep 2021 07:19:27 +0000 Subject: [PATCH] chore(release): 1.0.0 [skip ci] # [1.0.0](https://github.com/jest-community/jest-watch-typeahead/compare/v0.6.5...v1.0.0) (2021-09-29) ### Bug Fixes * add `exports` field to package.json ([#86](https://github.com/jest-community/jest-watch-typeahead/issues/86)) ([1bcd08f](https://github.com/jest-community/jest-watch-typeahead/commit/1bcd08fdc316fdb63b2665aac2b100222fcf2132)) * drop support for EOL versions of node ([#85](https://github.com/jest-community/jest-watch-typeahead/issues/85)) ([7351933](https://github.com/jest-community/jest-watch-typeahead/commit/73519337607032704ed67b3cf006d236256d1844)) ### Features * migrate to native ESM ([#84](https://github.com/jest-community/jest-watch-typeahead/issues/84)) ([a8e6940](https://github.com/jest-community/jest-watch-typeahead/commit/a8e6940851e7eefe16b69113fb29c6bd36916bb8)) ### BREAKING CHANGES * Drop support for Jest v26 * Module is now written in native ESM * Disallow importing internal files * Supported version range of node is now ^12.22.0 || ^14.17.0 || >=16.0.0 --- CHANGELOG.md | 21 +++++++++++++++++++++ package.json | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97ece4b..df0db2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# [1.0.0](https://github.com/jest-community/jest-watch-typeahead/compare/v0.6.5...v1.0.0) (2021-09-29) + + +### Bug Fixes + +* add `exports` field to package.json ([#86](https://github.com/jest-community/jest-watch-typeahead/issues/86)) ([1bcd08f](https://github.com/jest-community/jest-watch-typeahead/commit/1bcd08fdc316fdb63b2665aac2b100222fcf2132)) +* drop support for EOL versions of node ([#85](https://github.com/jest-community/jest-watch-typeahead/issues/85)) ([7351933](https://github.com/jest-community/jest-watch-typeahead/commit/73519337607032704ed67b3cf006d236256d1844)) + + +### Features + +* migrate to native ESM ([#84](https://github.com/jest-community/jest-watch-typeahead/issues/84)) ([a8e6940](https://github.com/jest-community/jest-watch-typeahead/commit/a8e6940851e7eefe16b69113fb29c6bd36916bb8)) + + +### BREAKING CHANGES + +* Drop support for Jest v26 +* Module is now written in native ESM +* Disallow importing internal files +* Supported version range of node is now ^12.22.0 || ^14.17.0 || >=16.0.0 + ## [0.6.5](https://github.com/jest-community/jest-watch-typeahead/compare/v0.6.4...v0.6.5) (2021-09-28) diff --git a/package.json b/package.json index 2a6783f..60d3967 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jest-watch-typeahead", - "version": "0.6.5", + "version": "1.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js",