Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0"
".": "0.2.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/commands/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adhd-ranch-commands"
version = "0.0.0"
version = "0.2.0"
edition.workspace = true
rust-version.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/domain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adhd-ranch-domain"
version = "0.0.0"
version = "0.2.0"
edition.workspace = true
rust-version.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/http-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion crates/storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adhd-ranch-storage"
version = "0.0.0"
version = "0.2.0"
edition.workspace = true
rust-version.workspace = true

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "adhd-ranch",
"private": true,
"version": "0.0.0",
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
7 changes: 5 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -32,7 +32,10 @@
},
"bundle": {
"active": true,
"targets": ["app", "dmg"],
"targets": [
"app",
"dmg"
],
"category": "Productivity",
"shortDescription": "Issue tracking for a five-year-old",
"icon": [
Expand Down
Loading