Skip to content

Commit 39cea36

Browse files
committed
Bump version to 3.3.6
1 parent 36e347d commit 39cea36

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

asdf.asd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
:licence "MIT"
9494
:description "Another System Definition Facility"
9595
:long-description "ASDF builds Common Lisp software organized into defined systems."
96-
:version "3.3.5.11" ;; to be automatically updated by make bump-version
96+
:version "3.3.6" ;; to be automatically updated by make bump-version
9797
:depends-on ()
9898
:components ((:module "build" :components ((:file "asdf"))))
9999
. #-asdf3 () #+asdf3

doc/asdf.texinfo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
6565

6666
@titlepage
6767
@title ASDF: Another System Definition Facility
68-
@subtitle Manual for Version 3.3.5.11
68+
@subtitle Manual for Version 3.3.6
6969
@c The following two commands start the copyright page.
7070
@page
7171
@vskip 0pt plus 1filll
@@ -82,7 +82,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8282
@node Top, Introduction, (dir), (dir)
8383
@top ASDF: Another System Definition Facility
8484
@ifnottex
85-
Manual for Version 3.3.5.11
85+
Manual for Version 3.3.6
8686
@end ifnottex
8787

8888

header.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
;;; -*- mode: Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; Package: CL-USER ; buffer-read-only: t; -*-
2-
;;; This is ASDF 3.3.5.11: Another System Definition Facility.
2+
;;; This is ASDF 3.3.6: Another System Definition Facility.
33
;;;
44
;;; Feedback, bug reports, and patches are all welcome:
55
;;; please mail to <[email protected]>.

uiop/version.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
(in-package :uiop/version)
1313

1414
(with-upgradability ()
15-
(defparameter *uiop-version* "3.3.5.11")
15+
(defparameter *uiop-version* "3.3.6")
1616

1717
(defun unparse-version (version-list)
1818
"From a parsed version (a list of natural numbers), compute the version string"

upgrade.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ previously-loaded version of ASDF."
9797
;; "3.4.5.67" would be a development version in the official branch, on top of 3.4.5.
9898
;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5
9999
;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67
100-
(asdf-version "3.3.5.11")
100+
(asdf-version "3.3.6")
101101
(existing-version (asdf-version)))
102102
(setf *asdf-version* asdf-version)
103103
(when (and existing-version (not (equal asdf-version existing-version)))

version.lisp-expr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
"3.3.5.11"
1+
"3.3.6"
22

0 commit comments

Comments
 (0)