summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-06-16 14:29:46 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-06-16 14:29:46 -0700
commit43becf60f836d18f292527650ce10337f7ece1a6 (patch)
treef029ef040b81e2cb13110da7bea23bbf8d5c5f82
parentc19bc5de961fe5e1f8a17131bcfae3dbcccaca29 (diff)
mesa: set version string to 7.8.2
-rw-r--r--Makefile2
-rw-r--r--configs/default2
-rw-r--r--src/mesa/main/version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index c81a2ec2d9e..84d00382e38 100644
--- a/Makefile
+++ b/Makefile
@@ -180,7 +180,7 @@ ultrix-gcc:
# Rules for making release tarballs
-VERSION=7.8.1
+VERSION=7.8.2
DIRECTORY = Mesa-$(VERSION)
LIB_NAME = MesaLib-$(VERSION)
DEMO_NAME = MesaDemos-$(VERSION)
diff --git a/configs/default b/configs/default
index fbd795fe718..f12bec8fa93 100644
--- a/configs/default
+++ b/configs/default
@@ -10,7 +10,7 @@ CONFIG_NAME = default
# Version info
MESA_MAJOR=7
MESA_MINOR=8
-MESA_TINY=1
+MESA_TINY=2
MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
# external projects. This should be useless now that we use libdrm.
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index cd760beba44..9955be24a80 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -34,8 +34,8 @@
/* Mesa version */
#define MESA_MAJOR 7
#define MESA_MINOR 8
-#define MESA_PATCH 1
-#define MESA_VERSION_STRING "7.8.1"
+#define MESA_PATCH 2
+#define MESA_VERSION_STRING "7.8.2"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))