chore: bump versions to 0.10.0

This commit is contained in:
Eduard Tolosa 2026-06-25 20:37:56 -05:00
parent 3d41f39ad9
commit b6fe86f418
4 changed files with 31 additions and 3 deletions

View file

@ -6,6 +6,34 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
--- ---
## [0.10.0] - 2026-06-25
The daemon is unchanged from 0.9.0; all changes are in the GNOME Shell extension.
### Fixed
- URL items now show their hostname as a subtitle. The old code used the WHATWG
`URL` API, which GJS does not provide, so it always threw and the subtitle
never appeared. It now uses `GLib.Uri`.
- The packaged extension was missing `dbus.js`. The extension imports it, but
`make pack` did not bundle it, so installing from the packaged zip would
fail to load. It is now included.
### Changed
- `ClipboardItem` uses a `constructor()` with an explicit `GTypeName` instead of
`_init()`.
- The error-logging helper lives in a single `util.js` module shared by the
extension, panel, and item widget.
### Internal
- Adopted the GJS ESLint style guide: an `eslint.config.js` flat config, an
`npm run lint` script, and a GitHub Actions workflow that lints on push and
pull requests. The extension passes with no warnings.
---
## [0.9.0] - 2026-06-25 ## [0.9.0] - 2026-06-25
The daemon is unchanged from 0.8.0; all changes are in the GNOME Shell extension. The daemon is unchanged from 0.8.0; all changes are in the GNOME Shell extension.

View file

@ -1205,7 +1205,7 @@ dependencies = [
[[package]] [[package]]
name = "strata-daemon" name = "strata-daemon"
version = "0.9.0" version = "0.10.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"blake3", "blake3",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "strata-daemon" name = "strata-daemon"
version = "0.9.0" version = "0.10.0"
edition = "2021" edition = "2021"
description = "Strata clipboard manager backend daemon" description = "Strata clipboard manager backend daemon"

View file

@ -2,7 +2,7 @@
"name": "Strata", "name": "Strata",
"description": "A fast clipboard manager. Storage, search and image decoding run in a separate Rust daemon.", "description": "A fast clipboard manager. Storage, search and image decoding run in a separate Rust daemon.",
"uuid": "strata@edu4rdshl.dev", "uuid": "strata@edu4rdshl.dev",
"version": 9, "version": 10,
"shell-version": ["50"], "shell-version": ["50"],
"settings-schema": "org.gnome.shell.extensions.strata", "settings-schema": "org.gnome.shell.extensions.strata",
"url": "https://github.com/Edu4rdSHL/Strata" "url": "https://github.com/Edu4rdSHL/Strata"