+1 with: macos 13.6.9 erlang 27.0.1 elixir 1.17.2 python 3.12.3 java zulu-7.48.0.11 and the following script in case anyone else wants to try it: ``` #!/bin/bash -ex
# https://cwiki.apache.org/confluence/display/COUCHDB/Testing+a+Source+Release VERSION=3.4.0 RC=rc3 ARTIFACT_URL= https://dist.apache.org/repos/dist/dev/couchdb/source/$VERSION/$RC/ TMP_DIR=/tmp/couchdb rm -rf $TMP_DIR mkdir -p $TMP_DIR/dist cd $TMP_DIR/dist erl -eval 'erlang:display(erlang:system_info(otp_release)), halt().' -noshell elixir --version python --version java -version wget --no-parent --no-directories -r $ARTIFACT_URL gpg --verify apache-couchdb-*.tar.gz.asc sha256sum --check apache-couchdb-*.tar.gz.sha256 tar -xvzf apache-couchdb-*.tar.gz cd apache-couchdb-$VERSION ./configure --js-engine=quickjs --with-clouseau make check make release echo 'adm = pass' >> rel/couchdb/etc/local.ini ./rel/couchdb/bin/couchdb & open http://127.0.0.1:5984/_utils/ ``` On Sun, Sep 15, 2024 at 4:02 PM Nick Vatamaniuc <vatam...@apache.org> wrote: > I would like to propose that we release Apache CouchDB 3.4.0. > > This is RC3. > > Thanks to Ronny for discovering and reporting the issue with the RC2 > configure script on Windows. > > Changes since the last round: > > https://github.com/apache/couchdb/compare/3.4.0-RC2...3.4.0-RC3 > > Candidate release notes: > > https://docs.couchdb.org/en/latest/whatsnew/3.4.html > > We encourage the whole community to download and test these release > artefacts so that any critical issues can be resolved before the > release is made. Everyone is free to vote on this release, so dig > right in! (Only PMC members have binding votes, but they depend on > community feedback to gauge if an official release is ready to be > made.) > > The release artefacts we are voting on are available here: > > https://dist.apache.org/repos/dist/dev/couchdb/source/3.4.0/rc3/ > > There, you will find a tarball, a GPG signature, and a SHA256 checksum. > > Please follow the test procedure here: > > > https://cwiki.apache.org/confluence/display/COUCHDB/Testing+a+Source+Release > > Please remember that "RC3" is an annotation. If the vote passes, these > artefacts will be released as Apache CouchDB 3.4.0. > > Please cast your votes now. > > Thank you, > -Nick >