mirror of
https://github.com/runebookai/tome.git
synced 2025-07-21 00:27:30 +03:00
19
CHANGELOG.md
19
CHANGELOG.md
@@ -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
|
||||
|
||||
18
bin/bump
18
bin/bump
@@ -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 -
|
||||
|
||||
@@ -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
2
src-tauri/Cargo.lock
generated
@@ -4,7 +4,7 @@ version = 4
|
||||
|
||||
[[package]]
|
||||
name = "Tome"
|
||||
version = "0.8.1"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"chrono",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
},
|
||||
"productName": "Tome",
|
||||
"mainBinaryName": "tome",
|
||||
"version": "0.8.1",
|
||||
"version": "0.9.0",
|
||||
"identifier": "co.runebook",
|
||||
"plugins": {
|
||||
"sql": {
|
||||
|
||||
Reference in New Issue
Block a user