From: John Wolfe Date: Wed, 2 Mar 2022 23:21:37 +0000 (-0800) Subject: Preparing for the 12.0.0 OVT release X-Git-Tag: stable-12.0.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb9d3ea1f87b78e6b46721c9e9005b4492a7154b;p=thirdparty%2Fopen-vm-tools.git Preparing for the 12.0.0 OVT release - configure.ac: set release version - 2 spots. - lib/include/buildNumber.h: Set build number and product build number. --- diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index 4d268f645..112fc3b3c 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -35,10 +35,10 @@ ### Initialization ### -TOOLS_VERSION="11.2.0" +TOOLS_VERSION="12.0.0" AC_INIT( [open-vm-tools], - [11.2.0], + [12.0.0], [open-vm-tools-devel@lists.sourceforge.net]) # In order to make this configure script auto-detect situations where diff --git a/open-vm-tools/lib/include/buildNumber.h b/open-vm-tools/lib/include/buildNumber.h index 523eb3253..35d55dcb8 100644 --- a/open-vm-tools/lib/include/buildNumber.h +++ b/open-vm-tools/lib/include/buildNumber.h @@ -1,12 +1,12 @@ #define BUILD_NUMBER \ - "build-15943241" + "build-19345655" #define BUILD_NUMBER_NUMERIC \ - 15943241 + 19345655 #define BUILD_NUMBER_NUMERIC_STRING \ - "15943241" + "19345655" #define PRODUCT_BUILD_NUMBER \ - "product-build-19694" + "product-build-34242" #define PRODUCT_BUILD_NUMBER_NUMERIC \ - 19694 + 34242 #define PRODUCT_BUILD_NUMBER_NUMERIC_STRING \ - "19694" + "34242"