diff --git a/asdf.asd b/asdf.asd index f61bd0663984b0bbd15c9e63cc4b5636714a1ab5..c611bcd8de9fd20fcdc35fc0a8d4b9133c3dad8e 100644 --- a/asdf.asd +++ b/asdf.asd @@ -74,7 +74,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "2.33.10" ;; to be automatically updated by make bump-version + :version "3.0.0" ;; to be automatically updated by make bump-version :depends-on () #+asdf3 :encoding #+asdf3 :utf-8 ;; For most purposes, asdf itself specially counts as a builtin system. diff --git a/debian/changelog b/debian/changelog index 95607a357a4f1b4f6154b2fb602b0d8e331ed479..d638d880c9da7003e2f6e9ee589d41094afb51ab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,17 +7,18 @@ cl-asdf (2:3.0.0-1) unstable; urgency=low * Portability: have *uninteresting-conditions* be empty by default. Move stuff to *usual-uninteresting-conditions*, unused by default. Will make the SBCL team happy. Also, fix tests on ABCL. + Fix regression of program-op on ECL, by implicitly linking in UIOP or ASDF. * UIOP: improvements to slurp-input-stream and thus run-program, notably accepting T as alias for *standard-output*, for better backward-compatibility of the deprecated run-shell-command. New macro with-output-file. - * POIU support enhanced various tweaks. + * POIU support enhanced with various tweaks. * Build cleanup so make and concatenate-source-op create the same asdf.lisp - -- Francois-Rene Rideau <fare@tunes.org> Mon, 29 Apr 2013 11:34:45 -0400 + -- Francois-Rene Rideau <fare@tunes.org> Mon, 05 May 2013 23:57:22 -0400 cl-asdf (2:2.33-1) unstable; urgency=low diff --git a/header.lisp b/header.lisp index 386eaf6c3269ddcd4e7fe6e59cd51320df301571..f39556062f639f3ffb5b7a07181ed49024919927 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 2.33.10: Another System Definition Facility. +;;; This is ASDF 3.0.0: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/upgrade.lisp b/upgrade.lisp index 95f1ea093b7cab383b73a504e99f16f28f8c2aeb..8f6e627609d2a9613757264940b77bf00d30628e 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO ;; "3.4.5.67" would be a development version in the official upstream of 3.4.5. ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5 ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67 - (asdf-version "2.33.10") + (asdf-version "3.0.0") (existing-version (asdf-version))) (setf *asdf-version* asdf-version) (when (and existing-version (not (equal asdf-version existing-version))) diff --git a/version.lisp-expr b/version.lisp-expr index 6dc71eef2330b83c998970ba25771f8d1cb95818..b96657be7a03863c1d0c170c284450b2b9420b91 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"2.33.10" +"3.0.0"