From 032cb872b9cff9cee897a7eedd19fb952149c458 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Thu, 14 Aug 2025 13:03:58 -0700 Subject: [PATCH] =?UTF-8?q?chore:=20Release=20Brainy=201.0.0=20-=20The=209?= =?UTF-8?q?=20Unified=20Methods!=20=F0=9F=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Moving from RC to official 1.0.0 release: - Users need to see the new unified API when visiting npm - Much better than showing outdated 0.63.0 - We can iterate with patches (1.0.1, 1.0.2) as needed - The 9 unified methods are production-ready Updated: - Version to 1.0.0 (from rc.2) - README badge to show 1.0.0 - Installation instructions (removed @rc tag) The unified API is here! --- README.md | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e4439e21..5350a9b9 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ![Brainy Logo](brainy.png) [![npm version](https://badge.fury.io/js/%40soulcraft%2Fbrainy.svg)](https://badge.fury.io/js/%40soulcraft%2Fbrainy) -[![1.0 RC](https://img.shields.io/badge/1.0-Release%20Candidate-orange.svg)](https://github.com/soulcraftlabs/brainy/releases/tag/v1.0.0-rc.1) +[![1.0](https://img.shields.io/badge/Version-1.0.0-brightgreen.svg)](https://github.com/soulcraftlabs/brainy/releases/tag/v1.0.0) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Website](https://img.shields.io/badge/Website-soulcraft.com-green.svg)](https://soulcraft.com) [![Brain Cloud](https://img.shields.io/badge/Brain%20Cloud-Coming%20Soon-blue.svg)](https://soulcraft.com) @@ -41,8 +41,8 @@ **The Great Cleanup is complete!** Brainy 1.0 introduces the **unified API** - ONE way to do everything with just **9 core methods**: ```bash -# Install the latest release candidate -npm install @soulcraft/brainy@rc +# Install Brainy 1.0 +npm install @soulcraft/brainy ``` ```javascript diff --git a/package.json b/package.json index f979fc7e..a0413d8f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@soulcraft/brainy", - "version": "1.0.0-rc.2", + "version": "1.0.0", "description": "Multi-Dimensional AI Database - Vector similarity, graph relationships, metadata facets with HNSW indexing and OPFS storage", "main": "dist/index.js", "module": "dist/index.js",