Bump 0.9.0

This commit is contained in:
Matte Noble
2025-07-03 18:58:05 -04:00
parent fdd0532c57
commit 8da3d4ee6f
6 changed files with 38 additions and 7 deletions

View File

@@ -1,5 +1,24 @@
# Changelog
## 0.9.0 - 2025-07-03
### 🎉 BIG CHANGES 🎉
- INTRODUCING Scheduled Tasks
- Schedule prompts to run automatically hourly or at a specific time every day.
- Use all your favorite MCP Servers.
- Use any model
- Light Mode! Huge thanks to @bneil for contributing a System/Light/Dark Mode to
Tome! Choose your theme in Settings.
### Fixes
- Fixed text formatting issue with welcome modal on smaller resolutions
- Removed MSI Windows installer due to problems with auto-update. Use the NSIS
exe 🙂
- Fixed issue where certain OpenAI-compatible Engines would error out if you
passed an empty array of `tools`.
## 0.8.1 - 2025-06-27
### Fixes

View File

@@ -20,9 +20,18 @@ MINOR=${SEMVER[1]}
PATCH=${SEMVER[2]}
case "$TIER" in
"major") MAJOR=$((MAJOR + 1)) ;;
"minor") MINOR=$((MINOR + 1)) ;;
"patch") PATCH=$((PATCH + 1)) ;;
"major")
MAJOR=$((MAJOR + 1))
MINOR=0
PATCH=0
;;
"minor")
MINOR=$((MINOR + 1))
PATCH=0
;;
"patch")
PATCH=$((PATCH + 1))
;;
*)
echo "Error: missing bump tier"
echo "Usage: bump major|minor|patch"
@@ -37,3 +46,6 @@ cat package.json | jq --indent 4 ".version |= \"$MAJOR.$MINOR.$PATCH\"" | tee pa
# Update Cargo.toml
cat src-tauri/Cargo.toml | sed -E "s/^version = \"[0-9]+.[0-9+].[0-9]+\"$/version = \"$MAJOR.$MINOR.$PATCH\"/" | tee src-tauri/Cargo.toml 2>&1 >/dev/null
# Cargo check to update Cargo.lock
cd src-tauri && cargo check && cd -

View File

@@ -1,7 +1,7 @@
{
"name": "tome",
"private": true,
"version": "0.8.1",
"version": "0.9.0",
"type": "module",
"scripts": {
"dev": "vite dev",

2
src-tauri/Cargo.lock generated
View File

@@ -4,7 +4,7 @@ version = 4
[[package]]
name = "Tome"
version = "0.8.1"
version = "0.9.0"
dependencies = [
"anyhow",
"chrono",

View File

@@ -1,6 +1,6 @@
[package]
name = "Tome"
version = "0.8.1"
version = "0.9.0"
description = "The easiest way to work with local models and MCP servers."
authors = ["Runebook"]
license = "MIT"

View File

@@ -58,7 +58,7 @@
},
"productName": "Tome",
"mainBinaryName": "tome",
"version": "0.8.1",
"version": "0.9.0",
"identifier": "co.runebook",
"plugins": {
"sql": {