From 96846ad6647642f127c70ca17dfd10f68fe884f3 Mon Sep 17 00:00:00 2001 From: Per Stark Date: Wed, 11 Feb 2026 15:36:39 +0100 Subject: [PATCH] release: 1.0.1 --- CHANGELOG.md | 5 +++++ main/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 304efad..0335d70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## 1.0.1 (2026-02-11) +- Shipped an S3 storage backend so content can be stored in object storage instead of local disk, with configuration support for S3 deployments. +- Introduced user theme preferences with the new Obsidian Prism look and improved dark mode styling. +- Fixed edge cases, including content deletion behavior and compatibility for older user records. + ## 1.0.0 (2026-01-02) - **Locally generated embeddings are now default**. If you want to continue using API embeddings, set EMBEDDING_BACKEND to openai. This will download a ONNX model and recreate all embeddings. But in most instances it's very worth it. Removing the network bound call to create embeddings. Creating embeddings on my N100 device is extremely fast. Typically a search response is provided in less than 50ms. - Added a benchmarks create for evaluating the retrieval process diff --git a/main/Cargo.toml b/main/Cargo.toml index 0135adc..85b7530 100644 --- a/main/Cargo.toml +++ b/main/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "main" -version = "1.0.0" +version = "1.0.1" edition = "2021" repository = "https://github.com/perstarkse/minne" license = "AGPL-3.0-or-later"