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 2022/11/30 13:42:09 UTC

[arrow-datafusion-python] branch master updated: post-release updates (#91)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e08da36  post-release updates (#91)
e08da36 is described below

commit e08da363646d98f857538bad400bfcad898be328
Author: Andy Grove <an...@gmail.com>
AuthorDate: Wed Nov 30 06:42:04 2022 -0700

    post-release updates (#91)
---
 .gitignore                     | 1 +
 dev/release/README.md          | 4 ++--
 dev/release/release-tarball.sh | 2 +-
 pyproject.toml                 | 4 ++--
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore
index 57431b9..7785b3c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,4 @@ venv
 apache-rat-*.jar
 *rat.txt
 .env
+CHANGELOG.md.bak
\ No newline at end of file
diff --git a/dev/release/README.md b/dev/release/README.md
index 20c1562..fd77f75 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -63,7 +63,7 @@ git push apache 0.7.0-rc1
 ### Create a source release
 
 ```bash
-./dev/create_tarball 0.7.0 1
+./dev/release/create_tarball 0.7.0 1
 ```
 
 This will also create the email template to send to the mailing list. Here is an example:
@@ -172,7 +172,7 @@ Once the vote passes, we can publish the release.
 Create the source release tarball:
 
 ```bash
-./dev/release-tarball.sh 0.7.0 1
+./dev/release/release-tarball.sh 0.7.0 1
 ```
 
 ### Publishing Python Artifacts
diff --git a/dev/release/release-tarball.sh b/dev/release/release-tarball.sh
index 15aa85e..f5e8eb1 100755
--- a/dev/release/release-tarball.sh
+++ b/dev/release/release-tarball.sh
@@ -59,7 +59,7 @@ echo "Clone release dist repository"
 svn co https://dist.apache.org/repos/dist/release/arrow ${tmp_dir}/release
 
 echo "Copy ${version}-rc${rc} to release working copy"
-release_version=arrow-datafusion-${version}
+release_version=arrow-datafusion-python-${version}
 mkdir -p ${tmp_dir}/release/${release_version}
 cp -r ${tmp_dir}/dev/* ${tmp_dir}/release/${release_version}/
 svn add ${tmp_dir}/release/${release_version}
diff --git a/pyproject.toml b/pyproject.toml
index 39a4789..f4f73bb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -47,8 +47,8 @@ dependencies = [
 ]
 
 [project.urls]
-homepage = "https://arrow.apache.org/datafusion"
-documentation = "https://arrow.apache.org/datafusion"
+homepage = "https://arrow.apache.org/datafusion-python"
+documentation = "https://arrow.apache.org/datafusion-python"
 repository = "https://github.com/apache/arrow-datafusion-python"
 
 [tool.isort]