Bump version numbers to 7.0.3 for next release

This commit is contained in:
Brian 2007-11-22 09:36:13 -07:00
parent c85d31f4a0
commit 823409b7d0
2 changed files with 7 additions and 7 deletions

View file

@ -166,10 +166,10 @@ ultrix-gcc:
# Rules for making release tarballs
DIRECTORY = Mesa-7.0.2
LIB_NAME = MesaLib-7.0.2
DEMO_NAME = MesaDemos-7.0.2
GLUT_NAME = MesaGLUT-7.0.2
DIRECTORY = Mesa-7.0.3
LIB_NAME = MesaLib-7.0.3
DEMO_NAME = MesaDemos-7.0.3
GLUT_NAME = MesaGLUT-7.0.3
MAIN_FILES = \
$(DIRECTORY)/Makefile* \

View file

@ -1,6 +1,6 @@
/*
* Mesa 3-D graphics library
* Version: 7.0.2
* Version: 7.0.3
*
* Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
*
@ -30,8 +30,8 @@
/* Mesa version */
#define MESA_MAJOR 7
#define MESA_MINOR 0
#define MESA_PATCH 2
#define MESA_VERSION_STRING "7.0.2"
#define MESA_PATCH 3
#define MESA_VERSION_STRING "7.0.3"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))