Skip to content

Commit 79711ac

Browse files
authored
Bump to version 0.3.0 (#549)
* Bump to version 0.3.0 Signed-off-by: Xuanwo <[email protected]> * regen Signed-off-by: Xuanwo <[email protected]> * Fix typo Signed-off-by: Xuanwo <[email protected]> * Update CHANGELOG.md --------- Signed-off-by: Xuanwo <[email protected]>
1 parent 9862026 commit 79711ac

12 files changed

+2507
-911
lines changed

.github/workflows/publish.yml

+5
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,13 @@ jobs:
3636
# Order here is sensitive, as it will be used to determine the order of publishing
3737
package:
3838
- "crates/iceberg"
39+
- "crates/catalog/glue"
3940
- "crates/catalog/hms"
41+
- "crates/catalog/memory"
4042
- "crates/catalog/rest"
43+
# sql is not ready for release yet.
44+
# - "crates/catalog/sql"
45+
- "crates/integrations/datafusion"
4146
steps:
4247
- uses: actions/checkout@v4
4348

CHANGELOG.md

+275-1
Large diffs are not rendered by default.

Cargo.toml

+20-20
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ members = [
2727
exclude = ["bindings/python"]
2828

2929
[workspace.package]
30-
version = "0.2.0"
30+
version = "0.3.0"
3131
edition = "2021"
3232
homepage = "https://rust.iceberg.apache.org/"
3333

@@ -47,49 +47,49 @@ arrow-select = { version = "52" }
4747
arrow-string = { version = "52" }
4848
async-stream = "0.3.5"
4949
async-trait = "0.1"
50-
async-std = "1.12.0"
50+
async-std = "1.12"
5151
aws-config = "1.1.8"
52-
aws-sdk-glue = "1.21.0"
52+
aws-sdk-glue = "1.21"
5353
bimap = "0.6"
5454
bitvec = "1.0.1"
5555
bytes = "1.5"
5656
chrono = "0.4.34"
5757
ctor = "0.2.8"
58-
derive_builder = "0.20.0"
58+
derive_builder = "0.20"
5959
either = "1"
6060
env_logger = "0.11.0"
6161
fnv = "1"
6262
futures = "0.3"
63-
iceberg = { version = "0.2.0", path = "./crates/iceberg" }
64-
iceberg-catalog-rest = { version = "0.2.0", path = "./crates/catalog/rest" }
65-
iceberg-catalog-hms = { version = "0.2.0", path = "./crates/catalog/hms" }
66-
iceberg-catalog-memory = { version = "0.2.0", path = "./crates/catalog/memory" }
63+
iceberg = { version = "0.3.0", path = "./crates/iceberg" }
64+
iceberg-catalog-rest = { version = "0.3.0", path = "./crates/catalog/rest" }
65+
iceberg-catalog-hms = { version = "0.3.0", path = "./crates/catalog/hms" }
66+
iceberg-catalog-memory = { version = "0.3.0", path = "./crates/catalog/memory" }
6767
itertools = "0.13"
68-
log = "^0.4"
69-
mockito = "^1"
68+
log = "0.4"
69+
mockito = "1"
7070
murmur3 = "0.5.2"
7171
once_cell = "1"
7272
opendal = "0.49"
73-
ordered-float = "4.0.0"
73+
ordered-float = "4"
7474
parquet = "52"
7575
pilota = "0.11.2"
76-
pretty_assertions = "1.4.0"
76+
pretty_assertions = "1.4"
7777
port_scanner = "0.1.5"
7878
regex = "1.10.5"
79-
reqwest = { version = "^0.12", default-features = false, features = ["json"] }
80-
rust_decimal = "1.31.0"
81-
serde = { version = "^1.0", features = ["rc"] }
79+
reqwest = { version = "0.12", default-features = false, features = ["json"] }
80+
rust_decimal = "1.31"
81+
serde = { version = "1", features = ["rc"] }
8282
serde_bytes = "0.11.8"
83-
serde_derive = "^1.0"
84-
serde_json = "^1.0"
83+
serde_derive = "1"
84+
serde_json = "1"
8585
serde_repr = "0.1.16"
86-
serde_with = "3.4.0"
86+
serde_with = "3.4"
8787
tempfile = "3.8"
8888
tokio = { version = "1", default-features = false }
89-
typed-builder = "^0.19"
89+
typed-builder = "0.19"
9090
url = "2"
9191
urlencoding = "2"
9292
uuid = { version = "1.6.1", features = ["v7"] }
9393
volo-thrift = "0.10"
94-
hive_metastore = "0.1.0"
94+
hive_metastore = "0.1"
9595
tera = "1"

0 commit comments

Comments
 (0)