[Liblas-commits] r1026 - in trunk: . include/liblas/capi python
liblas-commits at liblas.org
liblas-commits at liblas.org
Mon Feb 16 21:32:56 EST 2009
Author: hobu
Date: Mon Feb 16 21:32:55 2009
New Revision: 1026
URL: http://liblas.org/changeset/1026
Log:
increment versions to 1.2 which is where we will be at the next release
Modified:
trunk/configure.ac
trunk/include/liblas/capi/las_version.h
trunk/nmake.opt
trunk/python/setup.py
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Feb 16 21:32:55 2009
@@ -3,7 +3,7 @@
dnl This is main autoconf bootstrap script of libLAS project.
dnl
m4_define([liblas_version_major], [1])
-m4_define([liblas_version_minor], [1])
+m4_define([liblas_version_minor], [2])
m4_define([liblas_version_micro], [0])
m4_define([liblas_version],
[liblas_version_major.liblas_version_minor.liblas_version_micro])
@@ -123,8 +123,8 @@
fi
if test "$GDAL_CONFIG" != "no" ; then
- VERSION=`$GDAL_CONFIG --version`
- AC_MSG_RESULT([$GDAL_CONFIG reports version $VERSION])
+ GDAL_VERSION=`$GDAL_CONFIG --version`
+ AC_MSG_RESULT([$GDAL_CONFIG reports version $GDAL_VERSION])
LIBS="`$GDAL_CONFIG --libs` $LIBS"
GDAL_INC=`$GDAL_CONFIG --cflags`
GDAL_PREFIX=`$GDAL_CONFIG --prefix`
Modified: trunk/include/liblas/capi/las_version.h
==============================================================================
--- trunk/include/liblas/capi/las_version.h (original)
+++ trunk/include/liblas/capi/las_version.h Mon Feb 16 21:32:55 2009
@@ -44,7 +44,7 @@
#ifndef LIBLAS_VERSION_MAJOR
#define LIBLAS_VERSION_MAJOR 1
-#define LIBLAS_VERSION_MINOR 1
+#define LIBLAS_VERSION_MINOR 2
#define LIBLAS_VERSION_REV 0
#define LIBLAS_VERSION_BUILD 0
#endif
@@ -58,7 +58,7 @@
#endif
#ifndef LIBLAS_RELEASE_NAME
-#define LIBLAS_RELEASE_NAME "1.1.0"
+#define LIBLAS_RELEASE_NAME "1.2.0"
#endif
#endif /* LAS_VERSION_H_INCLUDED */
Modified: trunk/nmake.opt
==============================================================================
--- trunk/nmake.opt (original)
+++ trunk/nmake.opt Mon Feb 16 21:32:55 2009
@@ -13,7 +13,7 @@
LAS_LIB_DLL = liblas_i.lib
# only used for filenames of packages
-PACKAGE_VERSION = 1.1.0
+PACKAGE_VERSION = 1.2.0
INCLUDES = -I$(LAS_ROOT)/include -I$(LAS_ROOT)/include/liblas/capi
Modified: trunk/python/setup.py
==============================================================================
--- trunk/python/setup.py (original)
+++ trunk/python/setup.py Mon Feb 16 21:32:55 2009
@@ -17,7 +17,7 @@
import os
-version = '1.1.0'
+version = '1.2.0'
if os.name == 'nt':
# Windows NT library
More information about the Liblas-commits
mailing list