From 68c791286901c82c4565b2f898c6d2f7f82d89da Mon Sep 17 00:00:00 2001 From: Dave Perera Date: Wed, 1 Jul 2026 10:53:25 +0530 Subject: [PATCH 1/2] Update version to 1.0.2 and add changelog for release notes Co-Authored-By: PEPLOR <223156220+peplor@users.noreply.github.com> Co-Authored-By: Copilot <198982749+Copilot@users.noreply.github.com> --- CHANGELOG.md | 11 +++++++++++ manifest.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..565793d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +## [1.0.2] - 2026-07-01 +### Fixed +- Popup no longer flashes "Loading AI model…" unnecessarily on cold + starts when the bookmark index is already cached and up to date. + The embedding pipeline now loads lazily on first search rather than + eagerly on every service worker respawn (#1). + +## [1.0.1] +- Initial release improvements. \ No newline at end of file diff --git a/manifest.json b/manifest.json index 863a20f..482bdcf 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Findmark", - "version": "1.0.1", + "version": "1.0.2", "description": "Find any bookmark by describing it in plain English - powered by local AI.", "permissions": [ "bookmarks", From b076c0460fe12ac23f523ee8e5c81f5c5ab76ea3 Mon Sep 17 00:00:00 2001 From: Dave Perera Date: Wed, 1 Jul 2026 11:08:24 +0530 Subject: [PATCH 2/2] Revise CHANGELOG.md with new sections and links Updated changelog to include unreleased section and fixed links. --- CHANGELOG.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 565793d..3e8d35a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,19 @@ # Changelog +## [Unreleased] + ## [1.0.2] - 2026-07-01 ### Fixed -- Popup no longer flashes "Loading AI model…" unnecessarily on cold +- Popup no longer flashes "Loading AI model…" unnecessarily on cold starts when the bookmark index is already cached and up to date. - The embedding pipeline now loads lazily on first search rather than - eagerly on every service worker respawn (#1). + The embedding pipeline now loads lazily on first search rather than + eagerly on every service worker respawn. + ([#7](https://github.com/daveshenal/findmark/issues/7), [#9](https://github.com/daveshenal/findmark/pull/9)) + +## [1.0.1] - 2026-06-02 +### Fixed +- Initial release improvements. -## [1.0.1] -- Initial release improvements. \ No newline at end of file +## [1.0.0] - 2026-06-01 +### Added +- Test release.