Skip to content

Commit 1766680

Browse files
authored
Set version to 5.0.0 (apache#549)
1 parent 42e6ea3 commit 1766680

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

arrow-flight/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
[package]
1919
name = "arrow-flight"
2020
description = "Apache Arrow Flight"
21-
version = "5.0.0-SNAPSHOT"
21+
version = "5.0.0"
2222
edition = "2018"
2323
authors = ["Apache Arrow <[email protected]>"]
2424
homepage = "https://github.com/apache/arrow-rs"
2525
repository = "https://github.com/apache/arrow-rs"
2626
license = "Apache-2.0"
2727

2828
[dependencies]
29-
arrow = { path = "../arrow", version = "5.0.0-SNAPSHOT" }
29+
arrow = { path = "../arrow", version = "5.0.0" }
3030
base64 = "0.13"
3131
tonic = "0.4"
3232
bytes = "1"

arrow-pyarrow-integration-testing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "arrow-pyarrow-integration-testing"
2020
description = ""
21-
version = "5.0.0-SNAPSHOT"
21+
version = "5.0.0"
2222
homepage = "https://github.com/apache/arrow-rs"
2323
repository = "https://github.com/apache/arrow-rs"
2424
authors = ["Apache Arrow <[email protected]>"]
@@ -31,7 +31,7 @@ name = "arrow_pyarrow_integration_testing"
3131
crate-type = ["cdylib"]
3232

3333
[dependencies]
34-
arrow = { path = "../arrow", version = "5.0.0-SNAPSHOT" }
34+
arrow = { path = "../arrow", version = "5.0.0" }
3535
pyo3 = { version = "0.12.1", features = ["extension-module"] }
3636

3737
[package.metadata.maturin]

arrow/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "arrow"
20-
version = "5.0.0-SNAPSHOT"
20+
version = "5.0.0"
2121
description = "Rust implementation of Apache Arrow"
2222
homepage = "https://github.com/apache/arrow-rs"
2323
repository = "https://github.com/apache/arrow-rs"

arrow/test/dependency/default-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ edition = "2018"
2424
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2525

2626
[dependencies]
27-
arrow = { path = "../../../../arrow", version = "5.0.0-SNAPSHOT" }
27+
arrow = { path = "../../../../arrow", version = "5.0.0" }
2828

2929
[workspace]

arrow/test/dependency/no-default-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ edition = "2018"
2424
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2525

2626
[dependencies]
27-
arrow = { path = "../../../../arrow", version = "5.0.0-SNAPSHOT", default-features = false }
27+
arrow = { path = "../../../../arrow", version = "5.0.0", default-features = false }
2828

2929
[workspace]

arrow/test/dependency/simd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ edition = "2018"
2424
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2525

2626
[dependencies]
27-
arrow = { path = "../../../../arrow", version = "5.0.0-SNAPSHOT", features = ["simd"]}
27+
arrow = { path = "../../../../arrow", version = "5.0.0", features = ["simd"]}
2828

2929
[workspace]

integration-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "arrow-integration-testing"
2020
description = "Binaries used in the Arrow integration tests"
21-
version = "5.0.0-SNAPSHOT"
21+
version = "5.0.0"
2222
homepage = "https://github.com/apache/arrow-rs"
2323
repository = "https://github.com/apache/arrow-rs"
2424
authors = ["Apache Arrow <[email protected]>"]

parquet/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "parquet"
20-
version = "5.0.0-SNAPSHOT"
20+
version = "5.0.0"
2121
license = "Apache-2.0"
2222
description = "Apache Parquet implementation in Rust"
2323
homepage = "https://github.com/apache/arrow-rs"
@@ -41,7 +41,7 @@ lz4 = { version = "1.23", optional = true }
4141
zstd = { version = "0.9", optional = true }
4242
chrono = "0.4"
4343
num-bigint = "0.4"
44-
arrow = { path = "../arrow", version = "5.0.0-SNAPSHOT", optional = true }
44+
arrow = { path = "../arrow", version = "5.0.0", optional = true }
4545
base64 = { version = "0.13", optional = true }
4646
clap = { version = "2.33.3", optional = true }
4747
serde_json = { version = "1.0", features = ["preserve_order"], optional = true }
@@ -54,7 +54,7 @@ snap = "1.0"
5454
brotli = "3.3"
5555
flate2 = "1.0"
5656
lz4 = "1.23"
57-
arrow = { path = "../arrow", version = "5.0.0-SNAPSHOT" }
57+
arrow = { path = "../arrow", version = "5.0.0" }
5858
serde_json = { version = "1.0", features = ["preserve_order"] }
5959

6060
[features]

parquet_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "parquet_derive"
20-
version = "5.0.0-SNAPSHOT"
20+
version = "5.0.0"
2121
license = "Apache-2.0"
2222
description = "Derive macros for the Rust implementation of Apache Parquet"
2323
homepage = "https://github.com/apache/arrow-rs"
@@ -39,4 +39,4 @@ uuid = []
3939
proc-macro2 = "1.0"
4040
quote = "1.0"
4141
syn = { version = "1.0", features = ["full", "extra-traits"] }
42-
parquet = { path = "../parquet", version = "5.0.0-SNAPSHOT" }
42+
parquet = { path = "../parquet", version = "5.0.0" }

parquet_derive/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Derive also has some support for the chrono time library. You must must enable t
3030
Add this to your Cargo.toml:
3131
```toml
3232
[dependencies]
33-
parquet = "4.0.0-SNAPSHOT"
34-
parquet_derive = "4.0.0-SNAPSHOT"
33+
parquet = "5.0.0"
34+
parquet_derive = "5.0.0"
3535
```
3636

3737
and this to your crate root:

0 commit comments

Comments
 (0)