Skip to content
This repository was archived by the owner on Nov 19, 2023. It is now read-only.

Commit 222a0f5

Browse files
Tobias BrandtTobias Brandt
authored andcommitted
Updtates prql-compiler to version 0.2.9
1 parent 14171e1 commit 222a0f5

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# pq Changelog
22

3+
## 0.0.6 - 2022-10-15
4+
5+
* Updtate to prql-compiler version 0.2.9
6+
37
## 0.0.5 - 2022-10-13
48

59
* Added support for querying PostgreSQL databases (through DuckDB).

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "pq: query and transform data with PRQL"
33
name = "pq"
44
edition = "2021"
5-
version = "0.0.5"
5+
version = "0.0.6"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

@@ -22,7 +22,7 @@ env_logger = "0.9.0"
2222
log = "0.4.17"
2323
parquet = { version = "23" , optional = true }
2424
polars = { version = "0.24.2", optional = true, features = ["docs-selection"] }
25-
prql-compiler = { version = "0.2.8" }
25+
prql-compiler = { version = "0.2.9" }
2626
regex = { version = "1.6.0", optional = true }
2727
tokio = { version = "1.19", features = ["rt-multi-thread", "macros"] }
2828
url = "2"

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,3 +249,18 @@ environment, for example:
249249
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:
250250

251251
$ for e in prod uat dev; do cd $e && pq ../status_query.prql; done
252+
253+
## Roadmap
254+
255+
### 0.1.0
256+
257+
* Tests
258+
* Publish to crates.io
259+
260+
### 0.2.0
261+
262+
* Support for object stores
263+
264+
### 0.3.0
265+
266+
* Support for other databases through `connectorx`

0 commit comments

Comments
 (0)