From c913bd9464f336a35c93c133bfe67371ec2d42a3 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Thu, 14 Mar 2024 19:08:47 -0700 Subject: [PATCH] v0.7.0 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13738a3..38f06a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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). +## [0.7.0](https://github.com/metonym/svelte-keydown/releases/tag/v0.7.0) - 2024-03-14 + +**Breaking Changes** + +- drop bundled UMD/ESM support; only publish uncompiled `.svelte` code +- colocate TypeScript definitions with component source + +**Fixes** + +- add `exports` field to `package.json` + ## [0.6.0](https://github.com/metonym/svelte-keydown/releases/tag/v0.6.0) - 2023-02-14 - add `separator` prop to customize the key between keys diff --git a/package.json b/package.json index 942ccf1..666722e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte-keydown", - "version": "0.6.0", + "version": "0.7.0", "license": "MIT", "description": "Utility to listen for keyboard events", "author": "Eric Liu (https://github.com/metonym)",