Skip to content

Commit

Permalink
HTCONDOR-675: Final build for 9.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
timtheisen committed Sep 23, 2021
1 parent dece54c commit c3ac6cc
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Expand Up @@ -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
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -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.
Expand Down
10 changes: 10 additions & 0 deletions build/packaging/new-debian/changelog
@@ -1,3 +1,13 @@
condor (9.0.6-1) stable; urgency=medium

* CUDA_VISIBLE_DEVICES can now contain GPU-<uuid> 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 <tim@cs.wisc.edu> 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
Expand Down
7 changes: 7 additions & 0 deletions build/packaging/srpm/condor.spec
Expand Up @@ -1674,6 +1674,13 @@ fi
/bin/systemctl try-restart condor.service >/dev/null 2>&1 || :

%changelog
* Thu Sep 23 2021 Tim Theisen <tim@cs.wisc.edu> - 9.0.6-1
- CUDA_VISIBLE_DEVICES can now contain GPU-<uuid> 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 <tim@cs.wisc.edu> - 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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions docs/version-history/stable-release-series-90.rst
Expand Up @@ -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:

Expand Down
8 changes: 4 additions & 4 deletions nmi_tools/glue/build/build_uw_deb.sh
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions nmi_tools/glue/build/build_uw_rpm.sh
Expand Up @@ -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
Expand Down

0 comments on commit c3ac6cc

Please sign in to comment.