Skip to content

Commit 4a530f7

Browse files
committed
Merge branch 'master' into df_50
2 parents e1fac93 + b8f97dd commit 4a530f7

File tree

85 files changed

+2423
-1249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+2423
-1249
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
.envrc
44
.vscode
55
.aider*
6-
/test_env
6+
/tests-integration/test_env

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["datafusion-postgres", "datafusion-postgres-cli", "arrow-pg"]
44

55
[workspace.package]
6-
version = "0.8.1"
6+
version = "0.9.0"
77
edition = "2021"
88
license = "Apache-2.0"
99
rust-version = "1.86.0"

arrow-pg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "arrow-pg"
33
description = "Arrow data mapping and encoding/decoding for Postgres"
4-
version = "0.4.1"
4+
version = "0.5.0"
55
edition.workspace = true
66
license.workspace = true
77
authors.workspace = true

datafusion-postgres-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version.workspace = true
1515
[dependencies]
1616
datafusion = { workspace = true, default-features = true, features = ["avro"] }
1717
tokio = { workspace = true, features = ["full"] }
18-
datafusion-postgres = { path = "../datafusion-postgres", version = "0.8.1" }
18+
datafusion-postgres = { path = "../datafusion-postgres", version = "0.9.0" }
1919
structopt = { version = "0.3", default-features = false }
2020
log = "0.4"
2121
env_logger = "0.11"

datafusion-postgres/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,15 @@ repository.workspace = true
1111
documentation.workspace = true
1212
readme = "../README.md"
1313
rust-version.workspace = true
14+
include = [
15+
"src/**/*",
16+
"pg_catalog_arrow_exports/**/*",
17+
"Cargo.toml"
18+
]
19+
1420

1521
[dependencies]
16-
arrow-pg = { path = "../arrow-pg", version = "0.4.1", default-features = false, features = ["datafusion"] }
22+
arrow-pg = { path = "../arrow-pg", version = "0.5.0", default-features = false, features = ["datafusion"] }
1723
bytes.workspace = true
1824
async-trait = "0.1"
1925
chrono.workspace = true
File renamed without changes.

0 commit comments

Comments
 (0)