diff --git a/CHANGELOG.md b/CHANGELOG.md index 157fa1c9..e2ab1054 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [0.28.0](https://github.com/soulcraft-research/brainy/compare/v0.27.1...v0.28.0) (2025-07-31) + ### [0.27.1](https://github.com/soulcraft-research/brainy/compare/v0.27.0...v0.27.1) (2025-07-31) diff --git a/package-lock.json b/package-lock.json index 2c8856a4..9f7512bc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@soulcraft/brainy", - "version": "0.27.1", + "version": "0.28.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@soulcraft/brainy", - "version": "0.27.1", + "version": "0.28.0", "license": "MIT", "dependencies": { "@aws-sdk/client-s3": "^3.540.0", diff --git a/package.json b/package.json index 78112108..3b49e00b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@soulcraft/brainy", - "version": "0.27.1", + "version": "0.28.0", "description": "A vector graph database using HNSW indexing with Origin Private File System storage", "main": "dist/unified.js", "module": "dist/unified.js", @@ -59,6 +59,7 @@ "release:minor": "standard-version --release-as minor", "release:major": "standard-version --release-as major", "release:dry-run": "standard-version --dry-run", + "github-release": "node scripts/create-github-release.js", "changelog:check": "echo 'Changelog is now automatically generated from commit messages'", "lint": "eslint --ext .ts,.js src/", "lint:fix": "eslint --ext .ts,.js src/ --fix", @@ -66,7 +67,12 @@ "check:format": "prettier --check \"src/**/*.{ts,js}\"", "check:style": "node scripts/check-code-style.js", "prepare": "npm run build", - "deploy": "npm run build && npm run release && npm publish && node scripts/create-github-release.js", + "deploy": "npm run build && npm publish", + "workflow": "node scripts/release-workflow.js", + "workflow:patch": "node scripts/release-workflow.js patch", + "workflow:minor": "node scripts/release-workflow.js minor", + "workflow:major": "node scripts/release-workflow.js major", + "workflow:dry-run": "npm run build && npm test && npm run release:dry-run", "dry-run": "npm pack --dry-run", "test": "vitest run", "test:watch": "vitest",