Current status of the post-release tasks:
1.  [x] bump versions on main branch
     [x] push development tag
2.  [x] upload source
3.  [in-progress] upload binaries
4.  [x] update website
5.  [x] upload ruby gems
6.  [x] upload js packages
8.  [x] upload C# packages
10. [ ] update conda recipes
11. [in-progress] upload wheels/sdist to pypi
12. [ ] update homebrew packages
13. [ ] update maven artifacts
14. [ ] update msys2
15. [Neal] update R packages
16. [ ] update vcpkg port
17. [ ] update docs

On Wed, Jul 28, 2021 at 2:33 PM Krisztián Szűcs
<szucs.kriszt...@gmail.com> wrote:
>
> The VOTE carries with 4 binding +1 and 2 non-binding +1 votes.
>
> Thanks everyone!
>
> I'm starting the post release tasks and will keep you posted about the
> current status.
>
> On Wed, Jul 28, 2021 at 2:28 PM Krisztián Szűcs
> <szucs.kriszt...@gmail.com> wrote:
> >
> > +1 (binding)
> >
> > Verified on Intel macOS Big Sur.
> > The verification tasks [1] have passed except the integration tests
> > due to the go issue.
> >
> > [1]: https://github.com/apache/arrow/pull/10816
> >
> > On Tue, Jul 27, 2021 at 6:53 PM Krisztián Szűcs
> > <szucs.kriszt...@gmail.com> wrote:
> > >
> > > During the verification of M1 wheels we discovered an issue which had
> > > to be fixed [1].
> > > Also added support for python 3.8 M1 wheel [2] once I was working on
> > > the verification.
> > > Extended the verification tasks to exercise the scripts on M1 for both
> > > the source tarball and the wheels [3].
> > >
> > > I've just submitted the verification tasks at
> > > https://github.com/apache/arrow/pull/10816
> > > which I'd like to wait for before my vote. If everything goes well,
> > > then I'm going to close the vote tomorrow and start working on the
> > > post-release tasks (I wouldn't have time for them today).
> > >
> > > [1]: 
> > > https://github.com/apache/arrow/commit/410802af4f78d7cacd7d9d8e1450d93bdf6250f0
> > > [2]: 
> > > https://github.com/apache/arrow/commit/436e48bb379b25242c2d39db14f5bd6a0303c4fa
> > > [3]: 
> > > https://github.com/apache/arrow/commit/fe0c99b319443b936a15b9940cbaa57fbf935d90
> > >
> > > On Sun, Jul 25, 2021 at 11:37 PM David Li <lidav...@apache.org> wrote:
> > > >
> > > > +1 from me, with the same caveat about the Go integration tests.
> > > >
> > > > Verified sources (C++, Python, Java, integration), wheels, and binaries 
> > > > on Ubuntu 18.04.
> > > >
> > > > -David
> > > >
> > > > On Sun, Jul 25, 2021, at 13:59, Matt Topol wrote:
> > > > > This is the Jira issue for the go tags
> > > > >
> > > > > https://issues.apache.org/jira/browse/ARROW-8621
> > > > >
> > > > > I'm not familiar enough with the release scripts to volunteer to do it
> > > > > myself unfortunately.
> > > > >
> > > > > On Sun, Jul 25, 2021, 1:54 PM Benjamin Kietzman <bengil...@gmail.com> 
> > > > > wrote:
> > > > >
> > > > > > Thanks for that clarification, Matt. Is there a Jira for getting 
> > > > > > tags right
> > > > > > for Go?
> > > > > >
> > > > > > On Sun, Jul 25, 2021, 12:51 Matt Topol <zotthewiz...@gmail.com> 
> > > > > > wrote:
> > > > > >
> > > > > > > Because the release process is still not tagging the releases
> > > > > > appropriately
> > > > > > > for Go, I don't think it's necessary to wait because as soon as 
> > > > > > > this is
> > > > > > > merged to master it will be available for consumption via go get 
> > > > > > > -u
> > > > > > >
> > > > > > > For go, tags need to be added with the release in the form of
> > > > > > > "go/arrow/v5.0.0" to get it to be recognized since the go.mod 
> > > > > > > isn't at
> > > > > > the
> > > > > > > root
> > > > > > >
> > > > > > > On Sun, Jul 25, 2021, 12:31 PM Mauricio Vargas 
> > > > > > > <mavarga...@uc.cl.invalid
> > > > > > >
> > > > > > > wrote:
> > > > > > >
> > > > > > > > +1 I AGREE
> > > > > > > >
> > > > > > > > On Sun, Jul 25, 2021 at 10:04 AM Krisztián Szűcs <
> > > > > > > > szucs.kriszt...@gmail.com>
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > > > On Sat, Jul 24, 2021 at 6:46 PM Matt Topol 
> > > > > > > > > <zotthewiz...@gmail.com>
> > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > So, looking at the error message in the Go integration 
> > > > > > > > > > tests and
> > > > > > > > looking
> > > > > > > > > at
> > > > > > > > > > the stack trace, I was able to confirm the bug. I'm not 
> > > > > > > > > > sure why it
> > > > > > > > > showed
> > > > > > > > > > up in that run but not subsequent / reproducible but the 
> > > > > > > > > > issue
> > > > > > comes
> > > > > > > > down
> > > > > > > > > > to the following:
> > > > > > > > > >
> > > > > > > > > > In decimal128.go in the `FromBigInt` function you have this:
> > > > > > > > > >
> > > > > > > > > > b := v.Bits()
> > > > > > > > > > > n.lo = uint64(b[0])
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Turns out that if the passed in `v` is 0, then the length 
> > > > > > > > > > of b is
> > > > > > > also
> > > > > > > > 0,
> > > > > > > > > > so this ends up attempting to access index 0 of an empty 
> > > > > > > > > > slice.
> > > > > > > Simple
> > > > > > > > > fix
> > > > > > > > > > being to return early with 0 if v.BitLen() == 0.
> > > > > > > > > >
> > > > > > > > > > I've put up https://github.com/apache/arrow/pull/10796 to 
> > > > > > > > > > fix the
> > > > > > > > issue.
> > > > > > > > > Thanks Matt for taking a look at this and also for the patch.
> > > > > > > > >
> > > > > > > > > Shall we cut another RC or we could live with this bug until 
> > > > > > > > > the next
> > > > > > > > > patch release?
> > > > > > > > > >
> > > > > > > > > > On Sat, Jul 24, 2021 at 5:17 AM Yibo Cai <yibo....@arm.com> 
> > > > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > +1
> > > > > > > > > > >
> > > > > > > > > > > Verified C++ and Python on Arm64 Linux (Ubuntu 20.04, 
> > > > > > > > > > > aarch64).
> > > > > > > > > > >
> > > > > > > > > > > ARROW_CMAKE_OPTIONS="-DCMAKE_CXX_COMPILER=/usr/bin/clang++-10
> > > > > > > > > > > -DCMAKE_C_COMPILER=/usr/bin/clang-10" TEST_DEFAULT=0
> > > > > > TEST_SOURCE=1
> > > > > > > > > > > TEST_CPP=1 TEST_PYTHON=1 
> > > > > > > > > > > dev/release/verify-release-candidate.sh
> > > > > > > > source
> > > > > > > > > > > 5.0.0 1
> > > > > > > > > > >
> > > > > > > > > > > On 7/23/21 11:25 AM, Krisztián Szűcs wrote:
> > > > > > > > > > > > Hi,
> > > > > > > > > > > >
> > > > > > > > > > > > I would like to propose the following release candidate 
> > > > > > > > > > > > (RC1)
> > > > > > of
> > > > > > > > > Apache
> > > > > > > > > > > > Arrow version 5.0.0. This is a release consisting of 551
> > > > > > > > > > > > resolved JIRA issues[1].
> > > > > > > > > > > >
> > > > > > > > > > > > This release candidate is based on commit:
> > > > > > > > > > > > 4591d76fce2846a29dac33bf01e9ba0337b118e9 [2]
> > > > > > > > > > > >
> > > > > > > > > > > > The source release rc1 is hosted at [3].
> > > > > > > > > > > > The binary artifacts are hosted at [4][5][6][7][8][9].
> > > > > > > > > > > > The changelog is located at [10].
> > > > > > > > > > > >
> > > > > > > > > > > > Please download, verify checksums and signatures, run 
> > > > > > > > > > > > the unit
> > > > > > > > tests,
> > > > > > > > > > > > and vote on the release. See [11] for how to validate a 
> > > > > > > > > > > > release
> > > > > > > > > > > candidate.
> > > > > > > > > > > >
> > > > > > > > > > > > Note, please use [12] to verify the Amazon Linux and 
> > > > > > > > > > > > CentOS
> > > > > > > > packages.
> > > > > > > > > > > >
> > > > > > > > > > > > The vote will be open for at least 72 hours.
> > > > > > > > > > > >
> > > > > > > > > > > > [ ] +1 Release this as Apache Arrow 5.0.0
> > > > > > > > > > > > [ ] +0
> > > > > > > > > > > > [ ] -1 Do not release this as Apache Arrow 5.0.0 
> > > > > > > > > > > > because...
> > > > > > > > > > > >
> > > > > > > > > > > > [1]:
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20ARROW%20AND%20status%20in%20%28Resolved%2C%20Closed%29%20AND%20fixVersion%20%3D%205.0.0
> > > > > > > > > > > > [2]:
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > https://github.com/apache/arrow/tree/4591d76fce2846a29dac33bf01e9ba0337b118e9
> > > > > > > > > > > > [3]:
> > > > > > > > > https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-5.0.0-rc1
> > > > > > > > > > > > [4]:
> > > > > > https://apache.jfrog.io/artifactory/arrow/amazon-linux-rc/
> > > > > > > > > > > > [5]: 
> > > > > > > > > > > > https://apache.jfrog.io/artifactory/arrow/centos-rc/
> > > > > > > > > > > > [6]: 
> > > > > > > > > > > > https://apache.jfrog.io/artifactory/arrow/debian-rc/
> > > > > > > > > > > > [7]:
> > > > > > > https://apache.jfrog.io/artifactory/arrow/nuget-rc/5.0.0-rc1
> > > > > > > > > > > > [8]:
> > > > > > > https://apache.jfrog.io/artifactory/arrow/python-rc/5.0.0-rc1
> > > > > > > > > > > > [9]: 
> > > > > > > > > > > > https://apache.jfrog.io/artifactory/arrow/ubuntu-rc/
> > > > > > > > > > > > [10]:
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > https://github.com/apache/arrow/blob/4591d76fce2846a29dac33bf01e9ba0337b118e9/CHANGELOG.md
> > > > > > > > > > > > [11]:
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > https://cwiki.apache.org/confluence/display/ARROW/How+to+Verify+Release+Candidates
> > > > > > > > > > > > [12]: https://github.com/apache/arrow/pull/10786
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > --
> > > > > > > > —
> > > > > > > > *Mauricio 'Pachá' Vargas Sepúlveda*
> > > > > > > > Site: pacha.dev
> > > > > > > > Blog: pacha.dev/blog
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >

Reply via email to