From 7c7a6605ace657a76c74f7c0eaa4d0ab9f62dbe7 Mon Sep 17 00:00:00 2001 From: "Robert P. Goldman" <rpgoldman@gmail.com> Date: Tue, 2 Jul 2013 13:07:59 -0500 Subject: [PATCH] Prepare for 3.0.2 release. --- Makefile | 3 +++ asdf.asd | 2 +- debian/changelog | 9 +++++++++ debian/control | 2 +- header.lisp | 2 +- upgrade.lisp | 2 +- version.lisp-expr | 2 +- 7 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index f36e5af7..a91b81b5 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 90b2cb7e..c4ae4372 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 bdbdf574..24e23e37 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 7e85f97a..d2949075 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 016ee207..da8ebf59 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 1020351b..79cc707b 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 7dbd0f8f..1b137dcc 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"3.0.1.13" +"3.0.2" -- GitLab