diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index b562451..2e4ac4d 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -47,7 +47,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: clippy - args: -- -D warnings + args: --all -- -D warnings test: name: Test Suite diff --git a/Cargo.lock b/Cargo.lock index afd8718..2869429 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "_arrow_json" -version = "0.7.3" +version = "0.8.0" dependencies = [ "arrow", "pyo3", @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "_pgpq" -version = "0.7.3" +version = "0.8.0" dependencies = [ "arrow", "arrow-schema", @@ -1303,7 +1303,7 @@ checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" [[package]] name = "pgpq" -version = "0.7.3" +version = "0.8.0" dependencies = [ "anyhow", "arrow", diff --git a/core/Cargo.toml b/core/Cargo.toml index cb0edc5..be6c11f 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgpq" -version = "0.7.3" +version = "0.8.0" edition = "2021" description = "Encode Apache Arrow `RecordBatch`es to Postgres' native binary format" license = "MIT" diff --git a/json/Cargo.toml b/json/Cargo.toml index 9f9ea1a..ed244b5 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "_arrow_json" -version = "0.7.3" +version = "0.8.0" edition = "2021" readme = "README.md" license = "MIT" diff --git a/py/Cargo.toml b/py/Cargo.toml index 4e608ae..eb02300 100644 --- a/py/Cargo.toml +++ b/py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "_pgpq" -version = "0.7.3" +version = "0.8.0" edition = "2021" readme = "README.md" license = "MIT"