Skip to content

Commit

Permalink
release: v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vigimite committed Jul 28, 2024
1 parent f44b4b3 commit adc2e6e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.4.0] - 2024-07-28
### Details
#### Added
- Add support for ODBC destinations by @vigimite in [#17](https://github.com/vigimite/aqueducts/pull/17)

#### Changed
- Make json schema generation optional by @vigimite

## [0.3.2] - 2024-07-06
### Details
#### Changed
Expand Down Expand Up @@ -118,6 +126,7 @@ feat: add odbc support for source by @vigimite in [#2](https://github.com/vigimi
- Add release workflow by @vigimite
- Cleaned up workflows by @vigimite

[0.4.0]: https://github.com/vigimite/aqueducts/compare/v0.3.2..v0.4.0
[0.3.2]: https://github.com/vigimite/aqueducts/compare/v0.3.1..v0.3.2
[0.3.1]: https://github.com/vigimite/aqueducts/compare/v0.3.0..v0.3.1
[0.3.0]: https://github.com/vigimite/aqueducts/compare/v0.3.0-rc1..v0.3.0
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ description = "Framework to build ETL data pipelines declaratively"
homepage = "https://github.com/vigimite/aqueducts"
repository = "https://github.com/vigimite/aqueducts"
readme = "README.md"
version = "0.3.2"
version = "0.4.0"
keywords = ["aqueducts", "ETL", "data", "pipeline"]
categories = ["api-bindings"]
license-file = "LICENSE"

[workspace.dependencies]
aqueducts = { path = "aqueducts/core", version = "0.3.2" }
aqueducts-odbc = { path = "aqueducts/odbc", version = "0.3.2" }
aqueducts-utils = { path = "aqueducts/utils", version = "0.3.2" }
aqueducts = { path = "aqueducts/core", version = "0.4.0" }
aqueducts-odbc = { path = "aqueducts/odbc", version = "0.4.0" }
aqueducts-utils = { path = "aqueducts/utils", version = "0.4.0" }

datafusion = "39"
object_store = "0.10"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Please show these projects some support :heart:!

You can find the docs at <https://vigimite.github.io/aqueducts>

Change log: [CHANGELOG](CHANGELOG.md)

## Quick start

To define and execute an Aqueduct pipeline there are a couple of options
Expand Down
4 changes: 2 additions & 2 deletions aqueducts-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "CLI application to run pipelines defined for the aqueducts framew
homepage = "https://github.com/vigimite/aqueducts"
repository = "https://github.com/vigimite/aqueducts/aqueducts-cli"
readme = "README.md"
version = "0.3.2"
version = "0.4.0"
keywords = ["aqueducts", "ETL", "data", "pipeline", "cli"]
categories = ["command-line-utilities"]
license-file = "../LICENSE"
Expand All @@ -21,7 +21,7 @@ odbc = ["aqueducts/odbc"]
[dependencies]
datafusion.workspace = true

aqueducts = { path = "../aqueducts/core", version = "0.3.2" }
aqueducts = { path = "../aqueducts/core", version = "0.4.0" }
datafusion-functions-json = "0.2"
clap = { version = "4.5.4", features = ["derive"] }
env_logger = "0.11.3"
Expand Down

0 comments on commit adc2e6e

Please sign in to comment.