Skip to content

Commit

Permalink
Bump version to 3.3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rpgoldman committed Feb 9, 2024
1 parent c4f6d98 commit 44a3d68
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion asdf.asd
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
:licence "MIT"
:description "Another System Definition Facility"
:long-description "ASDF builds Common Lisp software organized into defined systems."
:version "3.3.7" ;; to be automatically updated by make bump-version
:version "3.3.7.1" ;; to be automatically updated by make bump-version
:depends-on ()
:components ((:module "build" :components ((:file "asdf"))))
. #-asdf3 () #+asdf3
Expand Down
4 changes: 2 additions & 2 deletions doc/asdf.texinfo
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

@titlepage
@title ASDF: Another System Definition Facility
@subtitle Manual for Version 3.3.7
@subtitle Manual for Version 3.3.7.1
@c The following two commands start the copyright page.
@page
@vskip 0pt plus 1filll
Expand All @@ -82,7 +82,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@node Top, Introduction, (dir), (dir)
@top ASDF: Another System Definition Facility
@ifnottex
Manual for Version 3.3.7
Manual for Version 3.3.7.1
@end ifnottex


Expand Down
2 changes: 1 addition & 1 deletion header.lisp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;;; -*- mode: Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; Package: CL-USER ; buffer-read-only: t; -*-
;;; This is ASDF 3.3.7: Another System Definition Facility.
;;; This is ASDF 3.3.7.1: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <[email protected]>.
Expand Down
2 changes: 1 addition & 1 deletion uiop/version.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
(in-package :uiop/version)

(with-upgradability ()
(defparameter *uiop-version* "3.3.7")
(defparameter *uiop-version* "3.3.7.1")

(defun unparse-version (version-list)
"From a parsed version (a list of natural numbers), compute the version string"
Expand Down
2 changes: 1 addition & 1 deletion upgrade.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ previously-loaded version of ASDF."
;; "3.4.5.67" would be a development version in the official branch, on top 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.3.7")
(asdf-version "3.3.7.1")
(existing-version (asdf-version)))
(setf *asdf-version* asdf-version)
(when (and existing-version (not (equal asdf-version existing-version)))
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"3.3.7"
"3.3.7.1"

0 comments on commit 44a3d68

Please sign in to comment.