From a8fb839b3caf0bde11a9f36d67e578964cc3e831 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Mon, 20 Jan 2025 10:34:03 -0800 Subject: [PATCH] v5.0.0 --- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c47e81b..71d2b61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.0.0](https://github.com/metonym/svelte-typeahead/releases/tag/v5.0.0) - 2025-01-20 + +**Breaking Changes** + +- set `package.json#type` to `module` with `exports` field +- drop bundled ESM/UMD builds (only Svelte source code is distributed) +- colocate TypeScript definitions with Svelte source code + +**Fixes** + +- patch `svelte-search` to v2.1.1 +- run `npm pkg fix` to fix `package.json` metadata + ## [4.4.2](https://github.com/metonym/svelte-typeahead/releases/tag/v4.4.2) - 2024-11-20 - fix `$$restProps` type errors by upgrading `svelte-search` diff --git a/package.json b/package.json index e6844c3..dcf9ed7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte-typeahead", - "version": "4.4.2", + "version": "5.0.0", "license": "MIT", "description": "Accessible, fuzzy search typeahead component", "author": "Eric Liu (https://github.com/metonym)",