From c4a3d470e5b1844498a2a51fe936e24b993c3af3 Mon Sep 17 00:00:00 2001 From: John Pruitt Date: Fri, 4 Sep 2026 10:15:56 -0500 Subject: [PATCH] chore: release core 0.1.1 --- CHANGELOG.md | 2 ++ bun.lock | 2 +- packages/core/package.json | 2 +- packages/core/src/version.ts | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6170fbb..e21dd13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1] - 2026-09-04 + ### Fixed - `upsert` and `upsertMany` now work on the same `postgres.js` pool connection diff --git a/bun.lock b/bun.lock index b1ed282..66f31a0 100644 --- a/bun.lock +++ b/bun.lock @@ -32,7 +32,7 @@ }, "packages/core": { "name": "searchgres", - "version": "0.1.0", + "version": "0.1.1", "dependencies": { "@opentelemetry/api": "^1.9.1", "ai": "^7.0.79", diff --git a/packages/core/package.json b/packages/core/package.json index 8aae0bc..2bc158a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "searchgres", - "version": "0.1.0", + "version": "0.1.1", "description": "Postgres-native hybrid search: semantic + BM25 retrieval with composable hierarchy, metadata, temporal, and regex filtering.", "license": "Apache-2.0", "type": "module", diff --git a/packages/core/src/version.ts b/packages/core/src/version.ts index a15c8d5..cd724f4 100644 --- a/packages/core/src/version.ts +++ b/packages/core/src/version.ts @@ -10,4 +10,4 @@ * This is package metadata only. Immutable index schemas use their own format * marker and never derive compatibility from the library package version. */ -export const LIBRARY_VERSION = "0.1.0"; +export const LIBRARY_VERSION = "0.1.1";