From: Ian Romanick Date: Wed, 16 Dec 2009 17:15:09 +0000 (-0800) Subject: mesa: set version string to 7.7-rc3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bf75ee9ccc6bb00ee0251997afcb522ead68f170;p=mesa.git mesa: set version string to 7.7-rc3 --- diff --git a/Makefile b/Makefile index fbe98906861..e927cb96851 100644 --- a/Makefile +++ b/Makefile @@ -182,7 +182,7 @@ ultrix-gcc: # Rules for making release tarballs -VERSION=7.7-rc2 +VERSION=7.7 DIRECTORY = Mesa-$(VERSION) LIB_NAME = MesaLib-$(VERSION) DEMO_NAME = MesaDemos-$(VERSION) diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index fa233b9f308..4f92353533e 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -32,7 +32,7 @@ #define MESA_MAJOR 7 #define MESA_MINOR 7 #define MESA_PATCH 0 -#define MESA_VERSION_STRING "7.7-rc2" +#define MESA_VERSION_STRING "7.7-rc3" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))