From 98d681458050cfff20acbb30260ff0302e82901b Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 21 May 2026 10:18:35 -0700 Subject: [PATCH] chore(main): release 0.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 10 +++++----- crates/commands/Cargo.toml | 2 +- crates/domain/Cargo.toml | 2 +- crates/http-api/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 7 +++++-- 11 files changed, 33 insertions(+), 16 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 261bc37..75a25d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to adhd-ranch. Follows [Keep a Changelog](https://keepachang --- +## [0.2.0](https://github.com/killallgit/adhd-ranch/compare/v0.1.0...v0.2.0) (2026-05-21) + + +### Features + +* add focus duplication and Windows startup polish ([#66](https://github.com/killallgit/adhd-ranch/issues/66)) ([9a7552c](https://github.com/killallgit/adhd-ranch/commit/9a7552c022d9ca52f5cd070b50395f1a81e9113a)) +* configure release-please ([#67](https://github.com/killallgit/adhd-ranch/issues/67)) ([89a58bf](https://github.com/killallgit/adhd-ranch/commit/89a58bf63d7c68381402e4622c0f57b49b5137ee)) + + +### Bug Fixes + +* make release-please compatible with workspace versions ([#69](https://github.com/killallgit/adhd-ranch/issues/69)) ([a974b9d](https://github.com/killallgit/adhd-ranch/commit/a974b9de1cfab7a11d43c8c478d3859b75057f6c)) +* remove release-please cargo workspace plugin ([#68](https://github.com/killallgit/adhd-ranch/issues/68)) ([0b616ed](https://github.com/killallgit/adhd-ranch/commit/0b616ede60cd548c0f7a26548f1da45e4a2b96e2)) + ## [Unreleased] ### Added — 053 task timer expiry workflow diff --git a/Cargo.lock b/Cargo.lock index e82e60c..d48fc37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "adhd-ranch" -version = "0.0.0" +version = "0.2.0" dependencies = [ "adhd-ranch-commands", "adhd-ranch-domain", @@ -29,7 +29,7 @@ dependencies = [ [[package]] name = "adhd-ranch-commands" -version = "0.0.0" +version = "0.2.0" dependencies = [ "adhd-ranch-domain", "adhd-ranch-storage", @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "adhd-ranch-domain" -version = "0.0.0" +version = "0.2.0" dependencies = [ "serde", "serde_json", @@ -49,7 +49,7 @@ dependencies = [ [[package]] name = "adhd-ranch-http-api" -version = "0.0.0" +version = "0.2.0" dependencies = [ "adhd-ranch-commands", "adhd-ranch-domain", @@ -67,7 +67,7 @@ dependencies = [ [[package]] name = "adhd-ranch-storage" -version = "0.0.0" +version = "0.2.0" dependencies = [ "adhd-ranch-domain", "fs2", diff --git a/crates/commands/Cargo.toml b/crates/commands/Cargo.toml index afe2647..5b80b9b 100644 --- a/crates/commands/Cargo.toml +++ b/crates/commands/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adhd-ranch-commands" -version = "0.0.0" +version = "0.2.0" edition.workspace = true rust-version.workspace = true diff --git a/crates/domain/Cargo.toml b/crates/domain/Cargo.toml index f919074..716a129 100644 --- a/crates/domain/Cargo.toml +++ b/crates/domain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adhd-ranch-domain" -version = "0.0.0" +version = "0.2.0" edition.workspace = true rust-version.workspace = true diff --git a/crates/http-api/Cargo.toml b/crates/http-api/Cargo.toml index cfc75ac..f8c0d5d 100644 --- a/crates/http-api/Cargo.toml +++ b/crates/http-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adhd-ranch-http-api" -version = "0.0.0" +version = "0.2.0" edition.workspace = true rust-version.workspace = true diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 8e636c8..283f1c0 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adhd-ranch-storage" -version = "0.0.0" +version = "0.2.0" edition.workspace = true rust-version.workspace = true diff --git a/package-lock.json b/package-lock.json index d81ca24..9ee2a67 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "adhd-ranch", - "version": "0.0.0", + "version": "0.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "adhd-ranch", - "version": "0.0.0", + "version": "0.2.0", "dependencies": { "@tauri-apps/api": "^2.1.1", "react": "^18.3.1", diff --git a/package.json b/package.json index 378952b..e35e4ab 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "adhd-ranch", "private": true, - "version": "0.0.0", + "version": "0.2.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 1ad3dd3..4e449db 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adhd-ranch" -version = "0.0.0" +version = "0.2.0" edition.workspace = true rust-version.workspace = true description = "Issue tracking for a five-year-old" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b8c894e..0cace7f 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": "Adhd Ranch", - "version": "0.0.0", + "version": "0.2.0", "identifier": "com.adhd-ranch.app", "build": { "beforeDevCommand": "npm run dev", @@ -32,7 +32,10 @@ }, "bundle": { "active": true, - "targets": ["app", "dmg"], + "targets": [ + "app", + "dmg" + ], "category": "Productivity", "shortDescription": "Issue tracking for a five-year-old", "icon": [