mesa: bump version to 7.6.1
authorBrian Paul <brianp@vmware.com>
Tue, 29 Sep 2009 15:36:06 +0000 (09:36 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 29 Sep 2009 15:36:06 +0000 (09:36 -0600)
Makefile
configs/default
src/mesa/main/version.h

index d360ddfd8bf10311d3693f546d2323e9f56e7e1c..d25c55c1501806441edecac519ca4c35ca3c76de 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -182,7 +182,7 @@ ultrix-gcc:
 
 # Rules for making release tarballs
 
-VERSION=7.6
+VERSION=7.6.1
 DIRECTORY = Mesa-$(VERSION)
 LIB_NAME = MesaLib-$(VERSION)
 DEMO_NAME = MesaDemos-$(VERSION)
index 2168b29e3e8394c1e233e2b09c72e61a7c4fe5b1..0bdc4c86b88e92bc210bccfaf964bdc560acb965 100644 (file)
@@ -10,7 +10,7 @@ CONFIG_NAME = default
 # Version info
 MESA_MAJOR=7
 MESA_MINOR=6
-MESA_TINY=0
+MESA_TINY=1
 MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
 
 # external projects.  This should be useless now that we use libdrm.
index 0ccdbf94a1bc5cfa3eb054885c42b6adccd338e7..f24e11cc513285002dfb5a50e2c84177e39d7bdc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Mesa 3-D graphics library
- * Version:  7.6
+ * Version:  7.6.1
  *
  * Copyright (C) 1999-2008  Brian Paul   All Rights Reserved.
  * Copyright (C) 2009  VMware, Inc.  All Rights Reserved.
@@ -31,8 +31,8 @@
 /* Mesa version */
 #define MESA_MAJOR 7
 #define MESA_MINOR 6
-#define MESA_PATCH 0
-#define MESA_VERSION_STRING "7.6"
+#define MESA_PATCH 1
+#define MESA_VERSION_STRING "7.6.1-devel"
 
 /* To make version comparison easy */
 #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))