Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiimk committed Mar 20, 2024
1 parent ed26a2a commit 318ee8b
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 54 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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).

## Unreleased
## [0.167.0] - 2024-03-19
### Added
- Implementation of `ObjectRepository` that can cache small objects on local file system (e.g. to avoid too many calls to S3 repo)
- Optional `S3RegistryCache` component that can cache the list of datasets under an S3 repo to avoid very expensive bucket prefix listing calls
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

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

50 changes: 25 additions & 25 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,36 +37,36 @@ resolver = "2"

[workspace.dependencies]
# Utils
container-runtime = { version = "0.166.1", path = "src/utils/container-runtime", default-features = false }
enum-variants = { version = "0.166.1", path = "src/utils/enum-variants", default-features = false }
event-bus = { version = "0.166.1", path = "src/utils/event-bus", default-features = false }
event-sourcing = { version = "0.166.1", path = "src/utils/event-sourcing", default-features = false }
event-sourcing-macros = { version = "0.166.1", path = "src/utils/event-sourcing-macros", default-features = false }
internal-error = { version = "0.166.1", path = "src/utils/internal-error", default-features = false }
multiformats = { version = "0.166.1", path = "src/utils/multiformats", default-features = false }
kamu-data-utils = { version = "0.166.1", path = "src/utils/data-utils", default-features = false }
kamu-datafusion-cli = { version = "0.166.1", path = "src/utils/datafusion-cli", default-features = false }
tracing-perfetto = { version = "0.166.1", path = "src/utils/tracing-perfetto", default-features = false }
container-runtime = { version = "0.167.0", path = "src/utils/container-runtime", default-features = false }
enum-variants = { version = "0.167.0", path = "src/utils/enum-variants", default-features = false }
event-bus = { version = "0.167.0", path = "src/utils/event-bus", default-features = false }
event-sourcing = { version = "0.167.0", path = "src/utils/event-sourcing", default-features = false }
event-sourcing-macros = { version = "0.167.0", path = "src/utils/event-sourcing-macros", default-features = false }
internal-error = { version = "0.167.0", path = "src/utils/internal-error", default-features = false }
multiformats = { version = "0.167.0", path = "src/utils/multiformats", default-features = false }
kamu-data-utils = { version = "0.167.0", path = "src/utils/data-utils", default-features = false }
kamu-datafusion-cli = { version = "0.167.0", path = "src/utils/datafusion-cli", default-features = false }
tracing-perfetto = { version = "0.167.0", path = "src/utils/tracing-perfetto", default-features = false }
# Domain
opendatafabric = { version = "0.166.1", path = "src/domain/opendatafabric", default-features = false }
kamu-core = { version = "0.166.1", path = "src/domain/core", default-features = false }
kamu-task-system = { version = "0.166.1", path = "src/domain/task-system", default-features = false }
kamu-flow-system = { version = "0.166.1", path = "src/domain/flow-system", default-features = false }
opendatafabric = { version = "0.167.0", path = "src/domain/opendatafabric", default-features = false }
kamu-core = { version = "0.167.0", path = "src/domain/core", default-features = false }
kamu-task-system = { version = "0.167.0", path = "src/domain/task-system", default-features = false }
kamu-flow-system = { version = "0.167.0", path = "src/domain/flow-system", default-features = false }
# Infra
kamu = { version = "0.166.1", path = "src/infra/core", default-features = false }
kamu-ingest-datafusion = { version = "0.166.1", path = "src/infra/ingest-datafusion", default-features = false }
kamu-task-system-inmem = { version = "0.166.1", path = "src/infra/task-system-inmem", default-features = false }
kamu-flow-system-inmem = { version = "0.166.1", path = "src/infra/flow-system-inmem", default-features = false }
kamu = { version = "0.167.0", path = "src/infra/core", default-features = false }
kamu-ingest-datafusion = { version = "0.167.0", path = "src/infra/ingest-datafusion", default-features = false }
kamu-task-system-inmem = { version = "0.167.0", path = "src/infra/task-system-inmem", default-features = false }
kamu-flow-system-inmem = { version = "0.167.0", path = "src/infra/flow-system-inmem", default-features = false }
# Adapters
kamu-adapter-auth-oso = { version = "0.166.1", path = "src/adapter/auth-oso", default-features = false }
kamu-adapter-flight-sql = { version = "0.166.1", path = "src/adapter/flight-sql", default-features = false }
kamu-adapter-graphql = { version = "0.166.1", path = "src/adapter/graphql", default-features = false }
kamu-adapter-http = { version = "0.166.1", path = "src/adapter/http", default-features = false }
kamu-adapter-odata = { version = "0.166.1", path = "src/adapter/odata", defualt-features = false }
kamu-adapter-oauth = { version = "0.166.1", path = "src/adapter/oauth", defualt-features = false }
kamu-adapter-auth-oso = { version = "0.167.0", path = "src/adapter/auth-oso", default-features = false }
kamu-adapter-flight-sql = { version = "0.167.0", path = "src/adapter/flight-sql", default-features = false }
kamu-adapter-graphql = { version = "0.167.0", path = "src/adapter/graphql", default-features = false }
kamu-adapter-http = { version = "0.167.0", path = "src/adapter/http", default-features = false }
kamu-adapter-odata = { version = "0.167.0", path = "src/adapter/odata", defualt-features = false }
kamu-adapter-oauth = { version = "0.167.0", path = "src/adapter/oauth", defualt-features = false }

[workspace.package]
version = "0.166.1"
version = "0.167.0"
edition = "2021"
homepage = "https://github.com/kamu-data/kamu-cli"
repository = "https://github.com/kamu-data/kamu-cli"
Expand Down
4 changes: 2 additions & 2 deletions 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 CLI Version 0.166.1
Licensed Work: Kamu CLI Version 0.167.0
The Licensed Work is © 2023 Kamu Data, Inc.

Additional Use Grant: You may use the Licensed Work for any purpose,
Expand All @@ -24,7 +24,7 @@ Additional Use Grant: You may use the Licensed Work for any purpose,
Licensed Work where data or transformations are
controlled by such third parties.

Change Date: 2028-03-14
Change Date: 2028-03-20

Change License: Apache License, Version 2.0

Expand Down

0 comments on commit 318ee8b

Please sign in to comment.