diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ed21d28..03e75a9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.13.0" + ".": "0.13.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 54030d4..c6a666b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.13.1](https://github.com/denolehov/annot/compare/v0.13.0...v0.13.1) (2026-06-22) + + +### Bug Fixes + +* **linux:** enable scrollbar interaction in borderless window ([#78](https://github.com/denolehov/annot/issues/78)) ([532ef0b](https://github.com/denolehov/annot/commit/532ef0bd98fc351d82c11eebf811b77457959bd9)) + ## [0.13.0](https://github.com/denolehov/annot/compare/v0.12.2...v0.13.0) (2026-06-21) diff --git a/package.json b/package.json index eff84f7..73f5f50 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "annot", - "version": "0.13.0", + "version": "0.13.1", "description": "Human-in-the-loop annotation tool for AI workflows", "type": "module", "scripts": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index df6a3c9..027e459 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -43,7 +43,7 @@ dependencies = [ [[package]] name = "annot" -version = "0.13.0" +version = "0.13.1" dependencies = [ "arboard", "base64 0.22.1", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index cc4a8c6..c76fed8 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "annot" -version = "0.13.0" # x-release-please-version +version = "0.13.1" # x-release-please-version description = "Human-in-the-loop annotation tool for AI workflows" authors = ["Denys Oliekhov"] license = "AGPL-3.0" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index dc3bd21..2572820 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "annot", - "version": "0.13.0", + "version": "0.13.1", "identifier": "com.denolehov.annot", "build": { "beforeDevCommand": "pnpm dev",