diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 78e7f27..8032c17 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.0" + ".": "0.12.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 71495f7..5a9b3fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.12.0](https://github.com/lezli01/markpad/compare/v0.11.0...v0.12.0) (2026-08-15) + + +### Features + +* add in-document search ([7e6fbf0](https://github.com/lezli01/markpad/commit/7e6fbf077d48fe2131e76170aba9bd96c8543128)) +* add in-document search ([8d3189f](https://github.com/lezli01/markpad/commit/8d3189f1ab349dcbf2801b1eaa7d79c7c4b6de45)) +* add workspace file search ([f1a8c2e](https://github.com/lezli01/markpad/commit/f1a8c2e7d9c62e8998aeffae529bcfa46559a973)) +* search text across files ([6f2438f](https://github.com/lezli01/markpad/commit/6f2438f53322352f88ce343e88a62f3163374929)) + ## [0.11.0](https://github.com/lezli01/markpad/compare/v0.10.0...v0.11.0) (2026-08-11) diff --git a/package-lock.json b/package-lock.json index 31047f6..4d0bd0d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "markpad", - "version": "0.11.0", + "version": "0.12.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "markpad", - "version": "0.11.0", + "version": "0.12.0", "license": "MIT", "dependencies": { "@codemirror/autocomplete": "^6.20.3", diff --git a/package.json b/package.json index 7897023..b3246dc 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "markpad", "private": true, "description": "Markdown editor with live preview", - "version": "0.11.0", + "version": "0.12.0", "license": "MIT", "repository": { "type": "git", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 16f9f5e..9217fa4 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "markpad" -version = "0.11.0" +version = "0.12.0" description = "A Tauri App" authors = ["lezli01"] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index d53b7e8..671229b 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -2,7 +2,7 @@ "$schema": "https://schema.tauri.app/config/2", "productName": "MarkPad", "mainBinaryName": "markpad", - "version": "0.11.0", + "version": "0.12.0", "identifier": "dev.is-a.lezli01.markpad", "build": { "beforeDevCommand": "npm run dev",