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
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## Desktop [0.1.7] — 2026-04-23

### Changed

- Recut the desktop release as `desktop-v0.1.7` from the current `main` commit to supersede the bad `desktop-v0.1.6` publish, whose assets were incorrectly still stamped `0.1.5`
- Bumped desktop package metadata to `0.1.7` so installer filenames, updater metadata, and the GitHub release tag all agree

## [0.1.7] — 2026-04-23

### Changed

- Recut the OSS server/worker release line as `v0.1.7` so the public GitHub release, crates metadata, and desktop version all converge on the same version after the bad April 2026 release sequence
- Bumped workspace crate versions to `0.1.7` for this coordinated release cut

## Desktop [0.1.5] — 2026-04-20

### Fixed
Expand Down Expand Up @@ -280,7 +294,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Cross-platform release binaries (Linux x86_64/aarch64, macOS x86_64/aarch64) via GitHub Actions.
- CI pipeline with formatting, linting, and test checks.

[Unreleased]: https://github.com/ericflo/modelrelay/compare/v0.2.1...HEAD
[Unreleased]: https://github.com/ericflo/modelrelay/compare/v0.1.7...HEAD
[0.1.7]: https://github.com/ericflo/modelrelay/compare/v0.1.6...v0.1.7
[0.2.1]: https://github.com/ericflo/modelrelay/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/ericflo/modelrelay/compare/v0.1.6...v0.2.0
[0.1.6]: https://github.com/ericflo/modelrelay/compare/v0.1.5...v0.1.6
Expand Down
2 changes: 1 addition & 1 deletion crates/modelrelay-cloud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "modelrelay-cloud"
version = "0.2.7"
version = "0.1.7"
edition.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/modelrelay-contract-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "modelrelay-contract-tests"
version = "0.2.7"
version = "0.1.7"
edition = "2024"
license.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion crates/modelrelay-desktop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "modelrelay-desktop"
version = "0.1.5"
version = "0.1.7"
description = "Native desktop tray app for ModelRelay workers"
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/modelrelay-desktop/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/nickel-org/nickel.rs/master/docs/tauri.conf.json",
"productName": "ModelRelay",
"version": "0.1.5",
"version": "0.1.7",
"identifier": "com.modelrelay.desktop",
"build": {
"frontendDist": "./ui"
Expand Down
2 changes: 1 addition & 1 deletion crates/modelrelay-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "modelrelay-protocol"
version = "0.2.7"
version = "0.1.7"
description = "WebSocket protocol types shared between the proxy server and worker daemon"
keywords = ["llm", "protocol", "websocket", "proxy", "worker"]
categories = ["network-programming", "encoding"]
Expand Down
2 changes: 1 addition & 1 deletion crates/modelrelay-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "modelrelay-server"
version = "0.2.7"
version = "0.1.7"
description = "Central HTTP proxy server that routes LLM inference requests to remote workers over WebSocket"
keywords = ["llm", "proxy", "websocket", "inference", "openai"]
categories = ["network-programming", "web-programming::http-server"]
Expand Down
2 changes: 1 addition & 1 deletion crates/modelrelay-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "modelrelay-web"
version = "0.2.7"
version = "0.1.7"
edition.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/modelrelay-worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "modelrelay-worker"
version = "0.2.7"
version = "0.1.7"
description = "Worker daemon that connects to the proxy server and forwards requests to a local LLM backend"
keywords = ["llm", "worker", "websocket", "inference", "llama"]
categories = ["network-programming", "web-programming::http-client"]
Expand Down
Loading