Skip to content

Commit

Permalink
Add missing compacting service dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rboiko committed Apr 21, 2024
1 parent 102f353 commit 333a18c
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
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).

## [0.20.2] - 2024-04-21

### Fixed

- Missing compacting service dependency

## [0.20.2] - 2024-04-18

### Changed
Expand Down
27 changes: 14 additions & 13 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ kamu-adapter-flight-sql = { git = "https://github.com/kamu-data/kamu-cli", tag =


[workspace.package]
version = "0.20.2"
version = "0.20.3"
edition = "2021"
homepage = "https://github.com/kamu-data/kamu-platform"
repository = "https://github.com/kamu-data/kamu-platform"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Business Source License 1.1

Licensor: Kamu Data, Inc.

Licensed Work: Kamu Platform Version 0.20.2
Licensed Work: Kamu Platform Version 0.20.3
The Licensed Work is © 2023 Kamu Data, Inc.

Additional Use Grant: You may use the Licensed Work for any purpose,
Expand Down
2 changes: 2 additions & 0 deletions src/app/api-server/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,8 @@ pub async fn init_dependencies(

b.add::<kamu::TransformServiceImpl>();
b.add::<kamu::SyncServiceImpl>();
b.add_builder(kamu::CompactingServiceImpl::builder().with_run_info_dir(run_info_dir.clone()))
.bind::<dyn kamu::domain::CompactingService, kamu::CompactingServiceImpl>();
b.add::<kamu::VerificationServiceImpl>();
b.add::<kamu::PullServiceImpl>();
b.add::<kamu::QueryServiceImpl>();
Expand Down

0 comments on commit 333a18c

Please sign in to comment.