You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2024/02/03 20:54:52 UTC

(arrow-ballista) branch main updated: fix release issue (#968)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/main by this push:
     new d7c07283 fix release issue (#968)
d7c07283 is described below

commit d7c07283e6a3f1617b535bf0878abaeed5a698bc
Author: Andy Grove <an...@gmail.com>
AuthorDate: Sat Feb 3 13:54:48 2024 -0700

    fix release issue (#968)
---
 .gitignore                              | 2 ++
 ballista/cache/Cargo.toml               | 8 +++++++-
 ballista/core/Cargo.toml                | 2 +-
 dev/release/verify-release-candidate.sh | 2 +-
 4 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index a86046a8..d9e136a1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,6 +16,8 @@
 # under the License.
 
 apache-rat-*.jar
+rat.txt
+filtered_rat.txt
 arrow-src.tar
 arrow-src.tar.gz
 CHANGELOG.md.bak
diff --git a/ballista/cache/Cargo.toml b/ballista/cache/Cargo.toml
index be89453e..f8b5721e 100644
--- a/ballista/cache/Cargo.toml
+++ b/ballista/cache/Cargo.toml
@@ -17,7 +17,13 @@
 
 [package]
 name = "ballista-cache"
-version = "0.11.0"
+description = "Ballista Cache"
+license = "Apache-2.0"
+homepage = "https://github.com/apache/arrow-ballista"
+repository = "https://github.com/apache/arrow-ballista"
+readme = "README.md"
+authors = ["Apache Arrow <de...@arrow.apache.org>"]
+version = "0.12.0"
 edition = "2021"
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/ballista/core/Cargo.toml b/ballista/core/Cargo.toml
index a6ef3f37..821dac2b 100644
--- a/ballista/core/Cargo.toml
+++ b/ballista/core/Cargo.toml
@@ -46,7 +46,7 @@ s3 = ["object_store/aws"]
 ahash = { version = "0.8", default-features = false }
 arrow-flight = { workspace = true }
 async-trait = "0.1.41"
-ballista-cache = { path = "../cache", version = "0.11.0" }
+ballista-cache = { path = "../cache", version = "0.12.0" }
 bytes = "1.0"
 chrono = { version = "0.4", default-features = false }
 clap = { version = "3", features = ["derive", "cargo"] }
diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index 3e490a44..da1fcd10 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -143,7 +143,7 @@ test_source_distribution() {
 
   # Note can't verify other ballista crates as they depend
   # on ballista-core which isn't published yet
-  pushd ballista/core
+  pushd ballista/cache
     cargo publish --dry-run
   popd
 }