Skip to content

Commit 3b4454e

Browse files
author
Matthew Valancy
committed
Update version to v0.2.0-alpha
1 parent 6e13454 commit 3b4454e

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Project Overview
66

7-
GraphDone is a graph-native project management system that reimagines work coordination through dependencies and democratic prioritization rather than hierarchical assignments. The project is in active development (v0.1.0-alpha) with core architecture implemented and working foundation.
7+
GraphDone is a graph-native project management system that reimagines work coordination through dependencies and democratic prioritization rather than hierarchical assignments. The project is in active development (v0.2.0-alpha) with core architecture implemented and working foundation.
88

99
## Core Philosophy
1010

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphdone",
3-
"version": "0.1.0-alpha",
3+
"version": "0.2.0-alpha",
44
"description": "Project management for teams who think differently",
55
"private": true,
66
"workspaces": [

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphdone/core",
3-
"version": "0.1.0-alpha",
3+
"version": "0.2.0-alpha",
44
"description": "Core graph engine for GraphDone",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphdone/server",
3-
"version": "0.1.0-alpha",
3+
"version": "0.2.0-alpha",
44
"description": "GraphQL API server for GraphDone",
55
"main": "dist/index.js",
66
"scripts": {

packages/web/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ VITE_GRAPHQL_WS_URL=ws://localhost:3127/graphql
44

55
# App configuration
66
VITE_APP_NAME=GraphDone
7-
VITE_APP_VERSION=0.1.0-alpha
7+
VITE_APP_VERSION=0.2.0-alpha
88

99
# Feature flags
1010
VITE_ENABLE_SUBSCRIPTIONS=true

packages/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphdone/web",
3-
"version": "0.1.0-alpha",
3+
"version": "0.2.0-alpha",
44
"description": "React web application for GraphDone",
55
"type": "module",
66
"scripts": {

packages/web/src/components/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export function Layout({ children }: LayoutProps) {
107107
</div>
108108
)}
109109
<p className="text-xs text-gray-400">
110-
v0.1.0-alpha
110+
v0.2.0-alpha
111111
</p>
112112
<p className="text-xs text-gray-500 mt-1">
113113
For teams who think differently

packages/web/src/pages/Settings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export function Settings() {
151151
<div className="space-y-3">
152152
<div className="flex justify-between">
153153
<span className="text-sm text-gray-400">Version</span>
154-
<span className="text-sm font-mono text-gray-100">0.1.0-alpha</span>
154+
<span className="text-sm font-mono text-gray-100">0.2.0-alpha</span>
155155
</div>
156156
<div className="flex justify-between">
157157
<span className="text-sm text-gray-400">License</span>

tools/document.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ if [ "$BUILD_DOCS" = true ]; then
145145
</ul>
146146
147147
<footer style="margin-top: 60px; padding: 30px 0; border-top: 1px solid #eee; text-align: center; color: #666;">
148-
<p>GraphDone v0.1.0-alpha - For teams who think differently</p>
148+
<p>GraphDone v0.2.0-alpha - For teams who think differently</p>
149149
</footer>
150150
</body>
151151
</html>

0 commit comments

Comments
 (0)