diff --git a/Makefile b/Makefile index f36e5af74962f7ea163b1c5d505f5f100e495257..a91b81b5de26cb15b227066d217ecbaa987cebd8 100644 --- a/Makefile +++ b/Makefile @@ -206,6 +206,9 @@ release: TODO test-all test-on-other-machines-too debian-changelog debian-packag # make test-load-systems s=fare-all # make bump v=3.0 # edit debian/changelog +# git commit +# git tag 3.0 # for example ... +# make debian-package # make release-push archive website debian-package # dput mentors ../*.changes # send debian mentors request diff --git a/asdf.asd b/asdf.asd index 90b2cb7ef1a8b2058134957748c901340cffa544..c4ae437272ae4518152c0d346161bccebc7db83f 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 "3.0.1.13" ;; to be automatically updated by make bump-version + :version "3.0.2" ;; 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 bdbdf57415e2bf3bb75699554ae83ca5eef4c191..24e23e37a2d0a3d77e1e60bb5bd7cd662d8e998f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +cl-asdf (2:3.0.2-1) unstable; urgency=low + + Improve support for CMUCL, ABCL, restore MCL support. + TRAVERSE is deprecated (moved to BACKWARD-INTERFACE), use + MAKE-PLAN instead. + Added DLL-OP and MONOLITHIC-DLL-OP for ECL. + + -- Robert P. Goldman <rpgoldman@sift.info> Tue, 02 Jul 2013 12:05:57 -0500 + cl-asdf (2:3.0.1.3-1) unstable; urgency=low Add some backward-compatibility to the debian package, diff --git a/debian/control b/debian/control index 7e85f97a9575f30f5c67ba2be93aa76cf0350a6e..d29490759c99ccfc49f7f382976f9562c4ace91b 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Uploaders: Peter Van Eynde <pvaneynd@debian.org>, Milan Zamazal <pdm@zamazal.org>, Christoph Egger <christoph@debian.org>, Julien Danjou <acid@debian.org>, - Francois-Rene Rideau <fare@tunes.org> + Robert P. Goldman <rpgoldman@sift.info> Build-Depends: debhelper (>> 7) Build-Depends-Indep: texinfo, texlive-extra-utils, texlive, texlive-generic-recommended Standards-Version: 3.9.3 diff --git a/header.lisp b/header.lisp index 016ee2074b5b45ec91ca9a0e4c49c21e0adf0754..da8ebf591034f5e16e2d5e5f545982f256bae269 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 3.0.1.13: Another System Definition Facility. +;;; This is ASDF 3.0.2: 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 1020351b6b32773e0bbe750544c070ecfc16a30b..79cc707b4ce7dc0c0d122be798516cfd3e558f74 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 "3.0.1.13") + (asdf-version "3.0.2") (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 7dbd0f8fc62ab236a1bb5edbdb8af77a2f14af6b..1b137dcca25b1cd81ff361dbf0950c87a1eeeb02 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"3.0.1.13" +"3.0.2"