Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
JMBeresford committed Aug 5, 2024
1 parent bf4fedc commit 92eeb01
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.21](https://github.com/JMBeresford/retrom/compare/retrom-v0.0.20...retrom-v0.0.21) - 2024-08-05

### Other
- updated the following local packages: retrom-client, retrom-codegen, retrom-db, retrom-service

## [0.0.20](https://github.com/JMBeresford/retrom/compare/retrom-v0.0.19...retrom-v0.0.20) - 2024-08-04

### Other
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exclude = ["**/node_modules"]

[package]
name = "retrom"
version = "0.0.20"
version = "0.0.21"
description = "Retrom is a centralized game library/collection management service with a focus on emulation."
edition.workspace = true
authors.workspace = true
Expand Down Expand Up @@ -43,10 +43,10 @@ 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.0.9" }
retrom-client = { path = "./packages/client", version = "0.0.19" }
retrom-service = { path = "./packages/service", version = "0.0.13" }
retrom-codegen = { path = "./packages/codegen", version = "0.0.11" }
retrom-db = { path = "./packages/db", version = "0.0.10" }
retrom-client = { path = "./packages/client", version = "0.0.20" }
retrom-service = { path = "./packages/service", version = "0.0.14" }
retrom-codegen = { path = "./packages/codegen", version = "0.0.12" }
retrom-plugin-installer = { path = "./plugins/retrom-plugin-installer", version = "0.0.9" }
retrom-plugin-launcher = { path = "./plugins/retrom-plugin-launcher", version = "0.0.10" }
futures = "0.3.30"
Expand Down
5 changes: 5 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.20](https://github.com/JMBeresford/retrom/compare/retrom-client-v0.0.19...retrom-client-v0.0.20) - 2024-08-05

### Fixed
- game file size overflow issues

## [0.0.19](https://github.com/JMBeresford/retrom/compare/retrom-client-v0.0.18...retrom-client-v0.0.19) - 2024-08-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "retrom-client"
version = "0.0.19"
version = "0.0.20"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions packages/codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.12](https://github.com/JMBeresford/retrom/compare/retrom-codegen-v0.0.11...retrom-codegen-v0.0.12) - 2024-08-05

### Fixed
- game file size overflow issues

## [0.0.11](https://github.com/JMBeresford/retrom/compare/retrom-codegen-v0.0.10...retrom-codegen-v0.0.11) - 2024-08-04

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "retrom-codegen"
version = "0.0.11"
version = "0.0.12"
description = "Code generation for Retrom"
authors.workspace = true
repository.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions packages/db/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.10](https://github.com/JMBeresford/retrom/compare/retrom-db-v0.0.9...retrom-db-v0.0.10) - 2024-08-05

### Fixed
- game file size overflow issues

## [0.0.9](https://github.com/JMBeresford/retrom/compare/retrom-db-v0.0.8...retrom-db-v0.0.9) - 2024-07-31

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "retrom-db"
description = "Database layer for Retrom"
version = "0.0.9"
version = "0.0.10"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions packages/service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.14](https://github.com/JMBeresford/retrom/compare/retrom-service-v0.0.13...retrom-service-v0.0.14) - 2024-08-05

### Fixed
- game file size overflow issues

## [0.0.13](https://github.com/JMBeresford/retrom/compare/retrom-service-v0.0.12...retrom-service-v0.0.13) - 2024-08-04

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "retrom-service"
version = "0.0.13"
version = "0.0.14"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down

0 comments on commit 92eeb01

Please sign in to comment.