From bbb71f5743895651333b834fca53ce7959b45bf5 Mon Sep 17 00:00:00 2001
From: Francois-Rene Rideau <tunes@google.com>
Date: Wed, 15 May 2013 00:00:05 -0400
Subject: [PATCH] 3.0.0: promoting 2.33.10 as new release. This is officially
 ASDF 3.

Also, tweaking the numbering system to match that of SBCL:
First digit (currently 3) indicates major version and change indicates incompatibility.
Second digit (currently 0) is minor version and change indicates notable progress.
Third digit (currently 0) is patch release version and increases with each new stable release.
Optionally a fourth digit (currently none) counts official changes since last stable release.
Optionally a fifth digit (currently none) counts local changes since last official changes.
---
 asdf.asd          | 2 +-
 debian/changelog  | 5 +++--
 header.lisp       | 2 +-
 upgrade.lisp      | 2 +-
 version.lisp-expr | 2 +-
 5 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/asdf.asd b/asdf.asd
index f61bd066..c611bcd8 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 95607a35..d638d880 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 386eaf6c..f3955606 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 95f1ea09..8f6e6276 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 6dc71eef..b96657be 100644
--- a/version.lisp-expr
+++ b/version.lisp-expr
@@ -1 +1 @@
-"2.33.10"
+"3.0.0"
-- 
GitLab