chore(release): 0.28.0 [skip ci]

This commit is contained in:
David Snelling 2025-07-31 13:39:07 -07:00
parent 04842d866c
commit 7ea47be868
3 changed files with 12 additions and 4 deletions

View file

@ -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)

4
package-lock.json generated
View file

@ -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",

View file

@ -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",