diff options
Diffstat (limited to 'base/version.mak')
-rw-r--r-- | base/version.mak | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/base/version.mak b/base/version.mak index a5694e28..23098685 100644 --- a/base/version.mak +++ b/base/version.mak @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2019 Artifex Software, Inc. +# Copyright (C) 2001-2020 Artifex Software, Inc. # All Rights Reserved. # # This software is provided AS-IS with no warranty, either express or @@ -12,14 +12,13 @@ # # Makefile fragment containing the current revision identification. -# Major and minor version numbers. -# MINOR0 is different from MINOR only if MINOR is a single digit. +# Major, minor and patch version numbers. GS_VERSION_MAJOR=9 -GS_VERSION_MINOR=52 -GS_VERSION_MINOR0=52 +GS_VERSION_MINOR=53 +GS_VERSION_PATCH=0 # Revision date: year x 10000 + month x 100 + day. -GS_REVISIONDATE=20200319 +GS_REVISIONDATE=20200910 # Derived values -GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0) -GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR0) +GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR)$(GS_VERSION_PATCH) +GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR).$(GS_VERSION_PATCH) GS_REVISION=$(GS_VERSION) |