Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missed dependency #118

Merged
merged 2 commits into from
Aug 22, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.32.1] - 2024-08-22
### Fixed
- Add missed `ResetService` dependency

## [0.32.0] - 2024-08-22
### Changed
- Upgrade kamu-cli version to `0.197.0`
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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ resolver = "2"

[workspace.dependencies]
# Utils
graceful-shutdown = { path = "src/utils/graceful-shutdown", version = "0.32.0", default-features = false }
observability = { path = "src/utils/observability", version = "0.32.0", default-features = false }
graceful-shutdown = { path = "src/utils/graceful-shutdown", version = "0.32.1", default-features = false }
observability = { path = "src/utils/observability", version = "0.32.1", default-features = false }
# Utils (core)
container-runtime = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.197.0", version = "0.197.0", default-features = false }
database-common = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.197.0", version = "0.197.0", default-features = false }
Expand Down Expand Up @@ -57,7 +57,7 @@ kamu-messaging-outbox-sqlite = { git = "https://github.com/kamu-data/kamu-cli",


[workspace.package]
version = "0.32.0"
version = "0.32.1"
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.32.0
Licensed Work: Kamu Platform Version 0.32.1
The Licensed Work is © 2023 Kamu Data, Inc.

Additional Use Grant: You may use the Licensed Work for any purpose,
Expand Down
1 change: 1 addition & 0 deletions src/app/api-server/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ pub async fn init_dependencies(
b.add::<kamu::VerificationServiceImpl>();
b.add::<kamu::PullServiceImpl>();
b.add::<kamu::QueryServiceImpl>();
b.add::<kamu::ResetServiceImpl>();

b.add::<kamu::AppendDatasetMetadataBatchUseCaseImpl>();
b.add::<kamu::CommitDatasetEventUseCaseImpl>();
Expand Down
Loading