From fe0dc909d0c81d2d1a8665a620af9a0f4ef40c6b Mon Sep 17 00:00:00 2001 From: Patrick Niebeling Date: Thu, 13 Aug 2026 10:26:09 +0200 Subject: [PATCH] Bump version to 0.1.0 for release, ignore local Claude notes .gitignore now excludes CLAUDE.md/CLAUDE.local.md and common IDE/OS/env cruft so local assistant notes never get committed. --- .gitignore | 28 +++++++++++++++++++++++++--- appinfo/info.xml | 2 +- package.json | 2 +- 3 files changed, 27 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index a9898da..434cb32 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,30 @@ +# Claude / AI assistant notes — local to this machine, never committed +CLAUDE.md +CLAUDE.local.md +.claude/ + +# PHP /vendor/ +/composer.lock +.php-cs-fixer.cache +.phpunit.result.cache + +# JS / build output /node_modules/ /js/ /build/ -/composer.lock /package-lock.json -.php-cs-fixer.cache -.phpunit.result.cache + +# IDE / editor +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Local env / secrets +.env +.env.local diff --git a/appinfo/info.xml b/appinfo/info.xml index 2124fc0..09404aa 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -28,7 +28,7 @@ This app lets every user configure their own Deck automation workflows from Pers A background job periodically evaluates all enabled workflows and moves cards whose due date has passed, using Deck's own internal PHP classes only (no HTTP/OCS calls). ]]> - 1.0.0 + 0.1.0 agpl Patrick Niebeling WorkflowDeckAutomation diff --git a/package.json b/package.json index f785261..7fb83e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "workflow_deck_automation", - "version": "1.0.0", + "version": "0.1.0", "private": true, "description": "Automates moving overdue Deck cards between stacks, configurable per user.", "scripts": {