Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project_id = "wavemind-benchmarks"
deployment_id = "wavemind-gcp-regions"
wavemind_image = "ghcr.io/caspiang/wavemind:2.6.0"
wavemind_image = "ghcr.io/caspiang/wavemind:2.6.1"

# Use the public address of the machine or self-hosted runner performing SSH.
ssh_source_ranges = ["203.0.113.10/32"]
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/wavemind/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: wavemind
description: Local-first dynamic memory layer with scheduled cluster repair
type: application
version: 0.3.0
appVersion: "2.6.0"
version: 0.3.1
appVersion: "2.6.1"
keywords:
- ai
- memory
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/wavemind/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ replicationFactor: 2

image:
repository: ghcr.io/caspiang/wavemind
tag: "2.6.0"
tag: "2.6.1"
pullPolicy: IfNotPresent

nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion deploy/remote/inventory.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"deployment_id": "wavemind-staging",
"environment": "staging",
"source": "ssh-remote-production-lab",
"image": "ghcr.io/caspiang/wavemind:2.6.0",
"image": "ghcr.io/caspiang/wavemind:2.6.1",
"regions": [
{
"id": "eu-west",
Expand Down
4 changes: 2 additions & 2 deletions deploy/serverless/wavemind-serverless.sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"containers": [
{
"name": "api",
"image": "ghcr.io/caspiang/wavemind:2.6.0",
"image": "ghcr.io/caspiang/wavemind:2.6.1",
"command": [
"wavemind"
],
Expand Down Expand Up @@ -175,7 +175,7 @@
"containers": [
{
"name": "api",
"image": "ghcr.io/caspiang/wavemind:2.6.0",
"image": "ghcr.io/caspiang/wavemind:2.6.1",
"command": [
"wavemind"
],
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
context: .
args:
INSTALL_OPTIONAL: "false"
image: wavemind:2.6.0
image: wavemind:2.6.1
restart: unless-stopped
environment:
WAVEMIND_DB: /data/wavemind.sqlite3
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "wavemind"
version = "2.6.0"
version = "2.6.1"
description = "Local-first dynamic memory field with vector search and wave-field re-ranking"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion wavemind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
restore_recovery_journal,
)

__version__ = "2.6.0"
__version__ = "2.6.1"

__all__ = [
"FieldProjector",
Expand Down
Loading