Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiimk committed Apr 10, 2024
1 parent cccb048 commit 5b02eef
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 71 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ 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.19.0] - 2024-04-09
### Added
- OData API now supports querying by collection ID/key (e.g. `account/covid.cases(123)`)
### Fixed
- Fixed all pedantic lint warnings

Expand Down
105 changes: 53 additions & 52 deletions Cargo.lock

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

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@ resolver = "2"

[workspace.dependencies]
# Utils
container-runtime = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
event-bus = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
internal-error = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
container-runtime = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
event-bus = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
internal-error = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
# Domain
opendatafabric = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-task-system = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-task-system-services = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
opendatafabric = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-task-system = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-task-system-services = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
# Infra
kamu = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-task-system-inmem = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-flow-system-inmem = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-adapter-graphql = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-adapter-http = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-adapter-oauth = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-adapter-odata = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-adapter-auth-oso = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu-adapter-flight-sql = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.172.2", version = "0.172.2", default-features = false }
kamu = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-task-system-inmem = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-flow-system-inmem = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-adapter-graphql = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-adapter-http = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-adapter-oauth = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-adapter-odata = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-adapter-auth-oso = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }
kamu-adapter-flight-sql = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.173.0", version = "0.173.0", default-features = false }


[workspace.package]
version = "0.18.3"
version = "0.19.0"
edition = "2021"
homepage = "https://github.com/kamu-data/kamu-platform"
repository = "https://github.com/kamu-data/kamu-platform"
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 Platform Version 0.18.3
Licensed Work: Kamu Platform Version 0.19.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-04-05
Change Date: 2028-04-10

Change License: Apache License, Version 2.0

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ lint:
cargo fmt --check
cargo test -p kamu-repo-tools
cargo deny check
cargo clippy --workspace --all-targets -- -D warnings


###############################################################################
Expand Down

0 comments on commit 5b02eef

Please sign in to comment.