Moved over to three-part version numbering scheme.

This commit is contained in:
2001-03-25 00:22:07 +00:00
parent 0aab94aa24
commit 384e68fd84
2 changed files with 7 additions and 2 deletions

View File

@ -23,11 +23,15 @@
(defparameter *clash-minor-version* 0 (defparameter *clash-minor-version* 0
"Minor release version of CLASH.") "Minor release version of CLASH.")
(defparameter *clash-patch-level* 0
"Current patch-level of CLASH.")
(defun clash-version-string () (defun clash-version-string ()
"Returns a string containing the CLASH release version." "Returns a string containing the CLASH release version."
(format nil "~D.~D" (format nil "~D.~D.~D"
*clash-major-version* *clash-major-version*
*clash-minor-version*)) *clash-minor-version*
*clash-patch-level*))
;;;; HTTP Protocol Version Handling ;;;; HTTP Protocol Version Handling

View File

@ -106,6 +106,7 @@
;; Version ;; Version
#:*clash-major-version* #:*clash-major-version*
#:*clash-minor-version* #:*clash-minor-version*
#:*clash-patch-level*
#:clash-version-string #:clash-version-string
#:http-version #:http-version
#:http-version-major #:http-version-major