Skip to content

Commit fe88bdf

Browse files
committed
Release v0.4.5
- Update version to 0.4.5 in all components - Python packages: hindsight-api, hindsight-dev, hindsight-all, hindsight-litellm, hindsight-embed - Python client: hindsight-clients/python - TypeScript client: hindsight-clients/typescript - Rust CLI: hindsight-cli - Control Plane: hindsight-control-plane - OpenClaw integration: hindsight-integrations/openclaw - Helm chart - Sync documentation to version-0.4
1 parent cbb8fc6 commit fe88bdf

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

helm/hindsight/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: hindsight
33
description: Hindsight helm chart
44
type: application
5-
version: 0.4.4
6-
appVersion: "0.4.4"
5+
version: 0.4.5
6+
appVersion: "0.4.5"
77
keywords:
88
- ai
99
- memory

hindsight-api/hindsight_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@
4646
"RemoteTEICrossEncoder",
4747
"LLMConfig",
4848
]
49-
__version__ = "0.4.4"
49+
__version__ = "0.4.5"

hindsight-api/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "hindsight-api"
7-
version = "0.4.4"
7+
version = "0.4.5"
88
description = "Hindsight: Agent Memory That Works Like Human Memory"
99
readme = "README.md"
1010
requires-python = ">=3.11"

hindsight-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hindsight-cli"
3-
version = "0.4.4"
3+
version = "0.4.5"
44
edition = "2021"
55
authors = ["Hindsight Team"]
66
description = "A beautiful CLI for Hindsight - semantic memory system"

hindsight-clients/python/hindsight_client_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "0.4.4"
17+
__version__ = "0.4.5"
1818

1919
# import apis into sdk package
2020
from hindsight_client_api.api.banks_api import BanksApi

hindsight-clients/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hindsight-client"
3-
version = "0.4.4"
3+
version = "0.4.5"
44
description = "Python client for Hindsight - Semantic memory system with personality-driven thinking"
55
authors = [
66
{name = "Hindsight Team"}

hindsight-clients/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vectorize-io/hindsight-client",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "TypeScript client for Hindsight - Semantic memory system with personality-driven thinking",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",

hindsight-control-plane/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vectorize-io/hindsight-control-plane",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "Control plane for Hindsight - Semantic memory system",
55
"bin": {
66
"hindsight-control-plane": "./bin/cli.js"

hindsight-dev/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "hindsight-dev"
7-
version = "0.4.4"
7+
version = "0.4.5"
88
description = "Development utilities for Hindsight"
99
requires-python = ">=3.11"
1010
dependencies = [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Hindsight embedded CLI - local memory operations without a server."""
22

3-
__version__ = "0.4.4"
3+
__version__ = "0.4.5"

0 commit comments

Comments
 (0)