diff --git a/CITATION.cff b/CITATION.cff index bfffc3a0705..d926075c09e 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -26,8 +26,8 @@ references: license: Apache-2.0 # --- Updates happen below this line. --- # Required. -date-released: TBD +date-released: 2021-09-23 # Required. version: 9.0.6 # Strongly recommended. Really ought to correspond to the version above. -doi: 10.5281/zenodo.2579447 +doi: 10.5281/zenodo.5521337 diff --git a/CMakeLists.txt b/CMakeLists.txt index 477944f3db8..3022f06e242 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,8 +50,8 @@ set(VERSION "9.0.6") # ship test binaries to a user, change this to identify your work. # Avoid whitespace. #set(PRE_RELEASE "PRE-RELEASE-UWCS") -set(PRE_RELEASE "RC") -#set(PRE_RELEASE OFF) +#set(PRE_RELEASE "RC") +set(PRE_RELEASE OFF) # If set via the cmake command line, FORCE_PRE_RELEASE allows for # PRE_RELEASE to be forced into a build. diff --git a/build/packaging/new-debian/changelog b/build/packaging/new-debian/changelog index ee8e2aea937..2ed6ecedc33 100644 --- a/build/packaging/new-debian/changelog +++ b/build/packaging/new-debian/changelog @@ -1,3 +1,13 @@ +condor (9.0.6-1) stable; urgency=medium + + * CUDA_VISIBLE_DEVICES can now contain GPU- formatted values + * Fixed a bug that caused jobs to fail when using newer Singularity versions + * Fixed a bug in the Windows MSI installer for the latest Windows 10 version + * Fixed bugs relating to the transfer of standard out and error logs + * MacOS 11.x now reports as 10.16.x (which is better than reporting x.0) + + -- Tim Theisen Thu, 23 Sep 2021 09:27:08 -0500 + condor (9.0.5-1) stable; urgency=medium * Other authentication methods are tried if mapping fails using SciTokens diff --git a/build/packaging/srpm/condor.spec b/build/packaging/srpm/condor.spec index fcaaeb5c996..a7b3260c5d9 100644 --- a/build/packaging/srpm/condor.spec +++ b/build/packaging/srpm/condor.spec @@ -1674,6 +1674,13 @@ fi /bin/systemctl try-restart condor.service >/dev/null 2>&1 || : %changelog +* Thu Sep 23 2021 Tim Theisen - 9.0.6-1 +- CUDA_VISIBLE_DEVICES can now contain GPU- formatted values +- Fixed a bug that caused jobs to fail when using newer Singularity versions +- Fixed a bug in the Windows MSI installer for the latest Windows 10 version +- Fixed bugs relating to the transfer of standard out and error logs +- MacOS 11.x now reports as 10.16.x (which is better than reporting x.0) + * Wed Aug 18 2021 Tim Theisen - 9.0.5-1 - Other authentication methods are tried if mapping fails using SciTokens - Fix rare crashes from successful condor_submit, which caused DAGMan issues diff --git a/docs/conf.py b/docs/conf.py index 9c37adbd4dc..a3d9981b30f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -67,7 +67,7 @@ release = '9.0.6' rst_epilog = """ -.. |release_date| replace:: Month Day, 2021 +.. |release_date| replace:: September 23, 2021 """ # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/version-history/stable-release-series-90.rst b/docs/version-history/stable-release-series-90.rst index 14c3dcb53d8..bdd5855cdaa 100644 --- a/docs/version-history/stable-release-series-90.rst +++ b/docs/version-history/stable-release-series-90.rst @@ -13,9 +13,7 @@ Version 9.0.6 Release Notes: -.. HTCondor version 9.0.6 released on Month Date, 2021. - -- HTCondor version 9.0.6 not yet released. +- HTCondor version 9.0.6 released on September 23, 2021. New Features: diff --git a/nmi_tools/glue/build/build_uw_deb.sh b/nmi_tools/glue/build/build_uw_deb.sh index b0e8dacefae..932a5ea5b41 100755 --- a/nmi_tools/glue/build/build_uw_deb.sh +++ b/nmi_tools/glue/build/build_uw_deb.sh @@ -77,16 +77,16 @@ export DEB_BUILD_OPTIONS="parallel=${OMP_NUM_THREADS-1}" # stable -> release repo #dist='unstable' -dist='testing' -#dist='stable' +#dist='testing' +dist='stable' echo "Distribution is $dist" echo "Suffix is '$suffix'" # Nightly build changelog -dch --distribution $dist --newversion "$condor_version-0.$condor_build_id" "Nightly build" +#dch --distribution $dist --newversion "$condor_version-0.$condor_build_id" "Nightly build" # Final release changelog -#dch --release --distribution $dist ignored +dch --release --distribution $dist ignored if [ "$suffix" = '' ]; then build='full' diff --git a/nmi_tools/glue/build/build_uw_rpm.sh b/nmi_tools/glue/build/build_uw_rpm.sh index 5b5d9f3c47f..50258069c33 100755 --- a/nmi_tools/glue/build/build_uw_rpm.sh +++ b/nmi_tools/glue/build/build_uw_rpm.sh @@ -79,9 +79,9 @@ update_spec_define git_build 0 update_spec_define tarball_version "$condor_version" update_spec_define condor_build_id "$condor_build_id" # Set HTCondor base release for pre-release build -update_spec_define condor_base_release "0.$condor_build_id" +#update_spec_define condor_base_release "0.$condor_build_id" # Set HTCondor base release to 1 for final release. -#update_spec_define condor_base_release "1" +update_spec_define condor_base_release "1" VERBOSE=1 export VERBOSE