chore(release): 0.28.0 [skip ci]
This commit is contained in:
parent
ad2a445a90
commit
52e96027ec
3 changed files with 12 additions and 4 deletions
|
|
@ -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.
|
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)
|
### [0.27.1](https://github.com/soulcraft-research/brainy/compare/v0.27.0...v0.27.1) (2025-07-31)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@soulcraft/brainy",
|
"name": "@soulcraft/brainy",
|
||||||
"version": "0.27.1",
|
"version": "0.28.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@soulcraft/brainy",
|
"name": "@soulcraft/brainy",
|
||||||
"version": "0.27.1",
|
"version": "0.28.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.540.0",
|
"@aws-sdk/client-s3": "^3.540.0",
|
||||||
|
|
|
||||||
10
package.json
10
package.json
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@soulcraft/brainy",
|
"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",
|
"description": "A vector graph database using HNSW indexing with Origin Private File System storage",
|
||||||
"main": "dist/unified.js",
|
"main": "dist/unified.js",
|
||||||
"module": "dist/unified.js",
|
"module": "dist/unified.js",
|
||||||
|
|
@ -59,6 +59,7 @@
|
||||||
"release:minor": "standard-version --release-as minor",
|
"release:minor": "standard-version --release-as minor",
|
||||||
"release:major": "standard-version --release-as major",
|
"release:major": "standard-version --release-as major",
|
||||||
"release:dry-run": "standard-version --dry-run",
|
"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'",
|
"changelog:check": "echo 'Changelog is now automatically generated from commit messages'",
|
||||||
"lint": "eslint --ext .ts,.js src/",
|
"lint": "eslint --ext .ts,.js src/",
|
||||||
"lint:fix": "eslint --ext .ts,.js src/ --fix",
|
"lint:fix": "eslint --ext .ts,.js src/ --fix",
|
||||||
|
|
@ -66,7 +67,12 @@
|
||||||
"check:format": "prettier --check \"src/**/*.{ts,js}\"",
|
"check:format": "prettier --check \"src/**/*.{ts,js}\"",
|
||||||
"check:style": "node scripts/check-code-style.js",
|
"check:style": "node scripts/check-code-style.js",
|
||||||
"prepare": "npm run build",
|
"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",
|
"dry-run": "npm pack --dry-run",
|
||||||
"test": "vitest run",
|
"test": "vitest run",
|
||||||
"test:watch": "vitest",
|
"test:watch": "vitest",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue