From 222a0f521fa010c957cfc2513ff84dabec8b4012 Mon Sep 17 00:00:00 2001 From: Tobias Brandt <Tobias.Brandt@gmail.com> Date: Sat, 15 Oct 2022 17:42:55 +0200 Subject: [PATCH] Updtates prql-compiler to version 0.2.9 --- CHANGELOG.md | 4 ++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- README.md | 15 +++++++++++++++ 4 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a2cda..03d4705 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # pq Changelog +## 0.0.6 - 2022-10-15 + +* Updtate to prql-compiler version 0.2.9 + ## 0.0.5 - 2022-10-13 * Added support for querying PostgreSQL databases (through DuckDB). diff --git a/Cargo.lock b/Cargo.lock index 0c639b0..038e82a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2441,9 +2441,9 @@ dependencies = [ [[package]] name = "prql-compiler" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b74fa1c958adafb4ee4da65e5cc44c43c48c478c5ee8fcdd0b37cf60fd510ce" +checksum = "ab0a1460939caebd0f788a7843df1474657c5686f5e41cc0fe356bfdc177be86" dependencies = [ "anyhow", "ariadne", diff --git a/Cargo.toml b/Cargo.toml index 21d64be..a9a0929 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ description = "pq: query and transform data with PRQL" name = "pq" edition = "2021" -version = "0.0.5" +version = "0.0.6" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -22,7 +22,7 @@ env_logger = "0.9.0" log = "0.4.17" parquet = { version = "23" , optional = true } polars = { version = "0.24.2", optional = true, features = ["docs-selection"] } -prql-compiler = { version = "0.2.8" } +prql-compiler = { version = "0.2.9" } regex = { version = "1.6.0", optional = true } tokio = { version = "1.19", features = ["rt-multi-thread", "macros"] } url = "2" diff --git a/README.md b/README.md index 9b5b6aa..a90ab8e 100644 --- a/README.md +++ b/README.md @@ -249,3 +249,18 @@ environment, for example: Or say that you have a `status_query.prql` that you need to run for a number of environments with .env files set up in subdirectories: $ for e in prod uat dev; do cd $e && pq ../status_query.prql; done + +## Roadmap + +### 0.1.0 + +* Tests +* Publish to crates.io + +### 0.2.0 + +* Support for object stores + +### 0.3.0 + +* Support for other databases through `connectorx`