Skip to content

Commit d8dfd13

Browse files
committed
chore: bump version 0.2.9 → 0.2.10 - dependency and CI updates
fastapi 0.140.8, lucide-react 1.27.0, actions/checkout v7, setup-node v7, setup-python v7, cache v6, codeql-action 4.37.3
1 parent ccf2105 commit d8dfd13

5 files changed

Lines changed: 31 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,32 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) —
1515

1616
---
1717

18+
## [0.2.10] — 2026-07-31
19+
20+
### Dependencies
21+
- fastapi: 0.140.0 → 0.140.8 (bug fixes)
22+
- lucide-react: 1.26.0 → 1.27.0 (new icons, upstream icon fixes)
23+
24+
### CI/CD
25+
- actions/checkout: 6 → 7
26+
- actions/setup-node: 6 → 7
27+
- actions/setup-python: 6 → 7
28+
- actions/cache: 4 → 6
29+
- github/codeql-action: 4 → 4.37.3
30+
31+
### Testing
32+
- Added `frontend/scripts/verify-lucide-icons.mjs`, run via `npm run verify-icons` in the
33+
`test-frontend` CI job — checks every lucide-react icon imported in `src/` still resolves
34+
after a version bump, since a renamed/removed icon fails silently at runtime rather than at
35+
build time
36+
37+
### Quality
38+
- All tests passing: 47 passed, 1 skipped
39+
- Frontend build and icon-resolution check verified with updated dependencies
40+
- No regressions
41+
42+
---
43+
1844
## [0.2.9] — 2026-07-25
1945

2046
### Dependencies

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ File (image / audio / video / document / anything)
8181

8282
## 🔧 Version
8383

84-
**v0.2.5**Maintenance and security update for Electron/frontend dependencies, including the upstream `fast-uri` security fixes. No changes to application behavior or the API.
84+
**v0.2.10**Routine dependency updates (fastapi 0.140.8, lucide-react 1.27.0) plus CI hardening (actions/checkout v7, setup-node v7, setup-python v7, cache v6, codeql-action 4.37.3). No changes to application behavior or the API.
8585

8686
📖 **See full version history**[CHANGELOG.md](./CHANGELOG.md)
8787

@@ -234,5 +234,5 @@ Distributed with MIT License · [View License](LICENSE)
234234

235235
---
236236

237-
*Last updated: 2026-07-25*
237+
*Last updated: 2026-07-31*
238238
*[Requirements](docs/REQUIREMENTS.md) | [Docs →](docs/)*

electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metalens",
3-
"version": "0.2.9",
3+
"version": "0.2.10",
44
"description": "Universal File Metadata Manager",
55
"author": "Graziano Mariella",
66
"license": "MIT",

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metalens-frontend",
3-
"version": "0.2.9",
3+
"version": "0.2.10",
44
"private": true,
55
"type": "module",
66
"scripts": {

python/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from dataclasses import dataclass
22

33

4-
VERSION = "0.2.9"
4+
VERSION = "0.2.10"
55
APP_NAME = "MetaLens"
66
SIDECAR_HOST = "127.0.0.1"
77

0 commit comments

Comments
 (0)