Skip to content

Commit

Permalink
retrom-v0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JMBeresford committed Dec 15, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 4e602ba commit ba8faff
Showing 3 changed files with 31 additions and 17 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4.8](https://github.com/JMBeresford/retrom/compare/retrom-v0.4.7...retrom-v0.4.8) - 2024-12-15

### Fixes
- IPC communications

An upstream dependency used to (de)serialize JSON between various
layers of Retrom introduced a regression that broke certain
functionalities. As a consequence of this, the server config
file now uses camelCase as is standard for JSON. Existing configs
will continue to work.




## [0.4.7](https://github.com/JMBeresford/retrom/compare/retrom-v0.4.6...retrom-v0.4.7) - 2024-12-13

### Fixes
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ exclude = ["**/node_modules"]

[workspace.package]
edition = "2021"
version = "0.4.7"
version = "0.4.8"
authors = ["John Beresford <jberesford@volcaus.com>"]
license = "GPL-3.0"
readme = "./README.md"
@@ -34,14 +34,14 @@ tracing-futures = { version = "0.2.5", features = ["tokio", "futures"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["io", "compat"] }
dotenvy = "0.15.7"
retrom-db = { path = "./packages/db", version = "^0.4.7" }
retrom-client = { path = "./packages/client", version = "^0.4.7" }
retrom-service = { path = "./packages/service", version = "^0.4.7" }
retrom-codegen = { path = "./packages/codegen", version = "^0.4.7" }
retrom-plugin-installer = { path = "./plugins/retrom-plugin-installer", version = "^0.4.7" }
retrom-plugin-launcher = { path = "./plugins/retrom-plugin-launcher", version = "^0.4.7" }
retrom-plugin-service-client = { path = "./plugins/retrom-plugin-service-client", version = "^0.4.7" }
retrom-plugin-steam = { path = "./plugins/retrom-plugin-steam", version = "^0.4.7" }
retrom-db = { path = "./packages/db", version = "^0.4.8" }
retrom-client = { path = "./packages/client", version = "^0.4.8" }
retrom-service = { path = "./packages/service", version = "^0.4.8" }
retrom-codegen = { path = "./packages/codegen", version = "^0.4.8" }
retrom-plugin-installer = { path = "./plugins/retrom-plugin-installer", version = "^0.4.8" }
retrom-plugin-launcher = { path = "./plugins/retrom-plugin-launcher", version = "^0.4.8" }
retrom-plugin-service-client = { path = "./plugins/retrom-plugin-service-client", version = "^0.4.8" }
retrom-plugin-steam = { path = "./plugins/retrom-plugin-steam", version = "^0.4.8" }
futures = "0.3.30"
bytes = "1.6.0"
reqwest = { version = "0.12.3", features = [

0 comments on commit ba8faff

Please sign in to comment.