Release 0.5.0
Minor rather than patch: the release removes the MCP server integration and the
Rhai plugin runtime, which is a feature removal, not a fix.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
5 files changed,
+14 insertions,
-7 deletions
| 6 |
6 |
|
|
| 7 |
7 |
|
## [Unreleased]
|
| 8 |
8 |
|
|
|
9 |
+ |
## [0.5.0] — 2026-07-16
|
|
10 |
+ |
|
| 9 |
11 |
|
### Removed
|
| 10 |
12 |
|
- MCP server integration and the Rhai plugin system (both added in 0.3.0) have
|
| 11 |
13 |
|
been removed. CSV import is now native Rust; there is no plugin runtime.
|
| 12 |
14 |
|
|
|
15 |
+ |
### Fixed
|
|
16 |
+ |
- Startup failures now show an error explaining what went wrong. The app
|
|
17 |
+ |
previously quit on launch without a message if it could not open its database
|
|
18 |
+ |
or finish a migration.
|
|
19 |
+ |
|
| 13 |
20 |
|
## [0.4.2] — 2026-06-07
|
| 14 |
21 |
|
|
| 15 |
22 |
|
### Fixed
|
| 1898 |
1898 |
|
|
| 1899 |
1899 |
|
[[package]]
|
| 1900 |
1900 |
|
name = "go-mcp"
|
| 1901 |
|
- |
version = "0.4.2"
|
|
1901 |
+ |
version = "0.5.0"
|
| 1902 |
1902 |
|
dependencies = [
|
| 1903 |
1903 |
|
"async-trait",
|
| 1904 |
1904 |
|
"chrono",
|
| 1927 |
1927 |
|
|
| 1928 |
1928 |
|
[[package]]
|
| 1929 |
1929 |
|
name = "goingson-core"
|
| 1930 |
|
- |
version = "0.4.2"
|
|
1930 |
+ |
version = "0.5.0"
|
| 1931 |
1931 |
|
dependencies = [
|
| 1932 |
1932 |
|
"async-trait",
|
| 1933 |
1933 |
|
"chrono",
|
| 1945 |
1945 |
|
|
| 1946 |
1946 |
|
[[package]]
|
| 1947 |
1947 |
|
name = "goingson-db-sqlite"
|
| 1948 |
|
- |
version = "0.4.2"
|
|
1948 |
+ |
version = "0.5.0"
|
| 1949 |
1949 |
|
dependencies = [
|
| 1950 |
1950 |
|
"argon2",
|
| 1951 |
1951 |
|
"async-trait",
|
| 1960 |
1960 |
|
|
| 1961 |
1961 |
|
[[package]]
|
| 1962 |
1962 |
|
name = "goingson-desktop"
|
| 1963 |
|
- |
version = "0.4.2"
|
|
1963 |
+ |
version = "0.5.0"
|
| 1964 |
1964 |
|
dependencies = [
|
| 1965 |
1965 |
|
"async-imap",
|
| 1966 |
1966 |
|
"async-trait",
|
| 9 |
9 |
|
resolver = "2"
|
| 10 |
10 |
|
|
| 11 |
11 |
|
[workspace.package]
|
| 12 |
|
- |
version = "0.4.2"
|
|
12 |
+ |
version = "0.5.0"
|
| 13 |
13 |
|
edition = "2024"
|
| 14 |
14 |
|
license-file = "LICENSE"
|
| 15 |
15 |
|
|
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "goingson-desktop"
|
| 3 |
|
- |
version = "0.4.2"
|
|
3 |
+ |
version = "0.5.0"
|
| 4 |
4 |
|
edition = "2024"
|
| 5 |
5 |
|
|
| 6 |
6 |
|
[[bin]]
|
| 1 |
1 |
|
{
|
| 2 |
2 |
|
"$schema": "https://schema.tauri.app/config/2",
|
| 3 |
3 |
|
"productName": "GoingsOn",
|
| 4 |
|
- |
"version": "0.4.2",
|
|
4 |
+ |
"version": "0.5.0",
|
| 5 |
5 |
|
"identifier": "com.goingson.app",
|
| 6 |
6 |
|
"build": {
|
| 7 |
7 |
|
"beforeBuildCommand": "node src-tauri/frontend/build-css.js",
|