From 503d09172b96d1679e049b3e04d8935db7ad0c96 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sat, 1 Oct 2022 11:18:27 -0600 Subject: [PATCH] Prepare 2.5.1 release --- cde/HISTORY | 46 ++++++++++++++++++++++++++++++++++++++++++++++ cde/configure.ac | 6 +++--- 2 files changed, 49 insertions(+), 3 deletions(-) diff --git a/cde/HISTORY b/cde/HISTORY index 0b9d5d5d3..97a83e042 100644 --- a/cde/HISTORY +++ b/cde/HISTORY @@ -5,6 +5,52 @@ use 'git log', or peruse the commit history at: https://sourceforge.net/p/cdesktopenv/code/commit_browser + +####################################################################### +### 2.5.1 (stable) 10/1/2022 + +This release fixes up some issues with the 2.5.0 release and removes +some more cruft. In addition, it upgrades ksh93 from 1.0.0beta to +1.0.3. + +Shortlog: + +Chase (9): + configure.ac: remove patch requirement + dtfile/dtcopy: remove duplicate icons + Discontinue HPUX support + dthelp: remove obsolete and non-compiled code + configure: detect libdl + configure: detect libm + Remove detected -lcrypt flag + lib/DtTerm/TermPrim: clean up defines + Generify source code + +Jon Trulson (14): + configure.ac: bump version to 2.5.0a + configure.ac: remove extra -lm check, move dl check to after libm check + C locales: recursively delete C locale directories on make install + doc: re-enable building the dtinfo guides on netbsd + libtt: remove OPT_LOCAL_MOUNT_TYPE, OS_VERSION - never used anywhere + dtlogin: remove HP BLS B1 simple authentication support (BLS) + Kill off OSMAJORVERSION and OSMINORVERSION defines/cpp flags + Delete all unused/obsolete .elist files + #127: dtcm: solaris - use readdir instead of readdir_r + #130: Xserver.src: fix sun X server path + Remove ksh 1.0.0beta + Squashed 'cde/programs/dtksh/ksh93/' content from commit b16c91f01 + Merge commit '97ef0077f06cef6f6bb93b0dae22441078647486' as 'cde/programs/dtksh/ksh93' + Upgrade ksh93 to 1.0.3 + +Liang Chang (5): + fontaliases: install to DESTDIR correctly. + dtdocbook: set locale explicitly. + doc: set locale explicitly for building doc. + dtsession: help applications enable "international". + dtsession: help xterm load the appropriate font. + + + ####################################################################### ### 2.5.0 (stable) 7/23/2022 diff --git a/cde/configure.ac b/cde/configure.ac index d11392d03..6919a5b53 100644 --- a/cde/configure.ac +++ b/cde/configure.ac @@ -1,7 +1,7 @@ dnl When changing the version below, also change the CDE_VERSION_* macros dnl to match further below AC_INIT([Common Desktop Environment], - [2.5.0a], + [2.5.1], [https://sourceforge.net/projects/cdesktopenv], [cde], [https://sourceforge.net/projects/cdesktopenv]) @@ -13,10 +13,10 @@ dnl global CDE versioning CDE_VERSION_MAJOR=2 CDE_VERSION_MINOR=5 -CDE_VERSION_MICRO=0 +CDE_VERSION_MICRO=1 dnl this is blank for a release, or contains an alpha character to indicate a dnl dev release. -CDE_VERSION_DEV=a +CDE_VERSION_DEV= AC_SUBST(CDE_VERSION_MAJOR) AC_SUBST(CDE_VERSION_MINOR)