From 34d7cf55da9e5ae73cdca15a84b7bbb2cf8b1457 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 7 Apr 2026 07:25:58 +0000 Subject: [PATCH] chore(release): 0.1.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ docs/release-notes.md | 19 +++++++++++++++++++ manifest.json | 2 +- package.json | 2 +- 4 files changed, 41 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0cd5ec..2b79c99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ # Changelog All notable changes to this project will be documented in this file. +## 0.1.0 (2026-04-07) + +### Features + +* add frontmatter utilities for explored property ([2e4789f](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/2e4789fa49170c25a56808d9f59ad98a3d64b973)) +* add graph canvas component with force-graph rendering ([c82819b](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/c82819b4b8bc83ec11a203d1d60ce91b4552b878)) +* add graph controls and zoom controls components ([2815c6c](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/2815c6cddf817baf9ea9a2dadd2abe62e6fdca26)) +* add graph data builder to transform base entries into graph nodes/links ([d170e61](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/d170e6128e601e3f1a8281c10b26f3eadd6cc6b9)) +* add graph explorer BasesView implementation ([49e5482](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/49e5482c517f9c47c7b8db69675f98a4099bd1f1)) +* add graph explorer CSS styles ([7b4f3c1](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/7b4f3c141cf0a922be881650c7df28be0d6fb83c)) +* add graph explorer view constants and options ([8911434](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/89114349fdbafc89788add4d2114169b487dd924)) +* add graph side panel with embedded note rendering ([bde5661](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/bde5661110ec1bd7a0f99674dfde3fb3a8533609)) +* add graph type definitions and update plugin settings ([c804535](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/c80453573cb5edd28c238ad3b9a4dabb699e0cd0)) +* register graph explorer base view and update plugin ([c111099](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/c1110992607d7edbeae39002b0bd640899d9863e)) + +### Bug Fixes + +* address code review issues (search highlight, theme reactivity, view option sync, cleanup) ([f3294ad](https://github.com/dsebastien/obsidian-graph-explorer-base-view/commit/f3294adbf62c2d822dfbb064be309b8cc9686e9e)) + ## [2.4.0](https://github.com/your-username/obsidian-my-plugin/compare/2.3.0...2.4.0) (2026-04-07) ### Features @@ -55,3 +74,4 @@ ## 1.0.0 (2024-04-26) + diff --git a/docs/release-notes.md b/docs/release-notes.md index 640b67f..a50c404 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,24 @@ # Release Notes +## 0.1.0 (2026-04-07) + +### Features + +- add frontmatter utilities for explored property +- add graph canvas component with force-graph rendering +- add graph controls and zoom controls components +- add graph data builder to transform base entries into graph nodes/links +- add graph explorer BasesView implementation +- add graph explorer CSS styles +- add graph explorer view constants and options +- add graph side panel with embedded note rendering +- add graph type definitions and update plugin settings +- register graph explorer base view and update plugin + +### Bug Fixes + +- address code review issues (search highlight, theme reactivity, view option sync, cleanup) + ## 2.4.0 (2026-04-07) ### Features diff --git a/manifest.json b/manifest.json index 4a43db9..3ef6eaf 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "id": "graph-explorer-base-view", "name": "Graph Explorer Base View", "description": "A custom Obsidian Bases view that renders notes as an interactive force-directed graph with explored/unexplored tracking", - "version": "0.0.1", + "version": "0.1.0", "minAppVersion": "1.10.0", "isDesktopOnly": false, "author": "Sébastien Dubois", diff --git a/package.json b/package.json index a1f0be3..4cb9caa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graph-explorer-base-view", - "version": "0.0.1", + "version": "0.1.0", "description": "A custom Obsidian Bases view that renders notes as an interactive force-directed graph with explored/unexplored tracking", "author": { "name": "Sébastien Dubois",