From f9955b3549a651d9f6c84d21861bb86060c4a336 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Sat, 16 Feb 2013 15:19:51 +0100 Subject: [PATCH] Getting ready for a release 2.29. --- Makefile | 3 ++- debian/changelog | 24 ++++++++++++++++++++++++ test/script-support.lisp | 4 ++-- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 386a11322..c1c0d754a 100644 --- a/Makefile +++ b/Makefile @@ -203,7 +203,8 @@ release: TODO test-all test-on-other-machines-too debian-changelog debian-packag # RELEASE checklist: # make test-all -# ./bin/bump-version 3.0 +# make test-load-systems s=fare-all +# make bump v=3.0 # edit debian/changelog # make release-push archive-copy website debian-package # dput mentors ../*.changes diff --git a/debian/changelog b/debian/changelog index 1142998f9..349893034 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +cl-asdf (2:2.29-1) unstable; urgency=low + + ASDF 2.29 is a bug fix release in preparation of an upcoming ASDF 3. + Since previous release 2.28, it includes: + + * deferred-warnings support for Allegro, CMUCL, SCL; + fixes to the CCL support. + + * Upgrade fixes regarding fallback system versions; + making it possible (via massive use of eval-when) + to compile ASDF without loading it first. + + * Compatibility with private use of :D package nickname + by not claiming it for package ASDF/DRIVER anymore. + Also explicitly handle NIL in safe-file-write-date, + in case the implementation doesn't issue a file-error in that case; + make UTF-8 the default encoding for with-input-file. + Be portable to #+(and sbcl (not sb-eval)). + + * Bugfixes to old bugs: inline-methods can now be unqualified (lp#485393), + defsystem-depends-on accepts arbitrary specs, not just names (lp#1027521). + + -- Francois-Rene Rideau <fare@tunes.org> Fri, 16 Feb 2013 15:07:24 +0100 + cl-asdf (2:2.28-1) unstable; urgency=low ASDF 2.28 is a quick patch to ASDF 2.27 to make it work better with diff --git a/test/script-support.lisp b/test/script-support.lisp index 4a307381d..750eaf1b6 100644 --- a/test/script-support.lisp +++ b/test/script-support.lisp @@ -488,8 +488,8 @@ is bound, write a message and exit on an error. If (setf *test-directory* x))) (format t "Frob packages~%") (use-package :asdf :asdf-test) - (use-package :asdf/driver :asdf-test) - (use-package :asdf/cache :asdf-test) + (when (find-package :asdf/driver) (use-package :asdf/driver :asdf-test)) + (when (find-package :asdf/cache) (use-package :asdf/cache :asdf-test)) (setf *package* (find-package :asdf-test)) t) -- GitLab