From 451a8b689ca4538658a1cd33cb2fbb1bebfd94fa Mon Sep 17 00:00:00 2001 From: rizary Date: Sun, 22 Jun 2025 01:04:47 +0700 Subject: [PATCH] chore: update versioning to start from 0.1.0 - Update package.json version from 1.0.0 to 0.1.0 - Update changelog to reflect proper initial version - Improve package description for clarity - Set proper baseline for future incremental releases --- CHANGELOG.md | 5 +++-- package.json | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8881781..60231e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v1.0.0 (2025-01-26) +## v0.1.0 (2025-01-26) ### 🚀 Enhancements @@ -20,6 +20,7 @@ - Clean up and format changelog (f6347f1) - Add comprehensive commit convention guide (d415a7c) +- Finalize changelog format and remove duplicates (a21e60c) ### 🧹 Chore @@ -27,7 +28,7 @@ #### ⚠️ Breaking Changes -- **ESLint configuration migrated to flat config system** - Projects using this codebase will need to update their ESLint setup +- **ESLint configuration migrated to flat config system** ### ❤️ Contributors diff --git a/package.json b/package.json index 0880720..97c6026 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "Ziya", "productName": "Ziya", - "version": "1.0.0", - "description": "One Stop Shop for your trading needs", + "version": "0.1.0", + "description": "One stop shop for your trading habit", "type": "module", "main": ".vite/build/main.cjs", "scripts": { @@ -19,7 +19,8 @@ "format": "prettier --write .", "changelog": "changelogen --output CHANGELOG.md", "changelog:release": "changelogen --release --output CHANGELOG.md", - "release": "pnpm run changelog:release && git add CHANGELOG.md && git commit -m 'chore: update changelog' && git push" + "release": "changelogen --release --push", + "release:dry": "changelogen --release --no-commit --no-tag" }, "keywords": [], "author": "rizary",