[Liblas-commits] laszip: update notes about which version numbers
to increment
liblas-commits at liblas.org
liblas-commits at liblas.org
Thu Jun 23 09:49:14 EDT 2011
details: http://hg.liblas.orglaszip/rev/9e1caba2400e
changeset: 250:9e1caba2400e
user: Howard Butler <hobu.inc at gmail.com>
date: Thu Jun 23 08:48:00 2011 -0500
description:
update notes about which version numbers to increment
Subject: laszip: increment version to 2.0.0
details: http://hg.liblas.orglaszip/rev/e4b6bd24319b
changeset: 251:e4b6bd24319b
user: Howard Butler <hobu.inc at gmail.com>
date: Thu Jun 23 08:49:06 2011 -0500
description:
increment version to 2.0.0
diffstat:
CMakeLists.txt | 6 +++---
HOWTORELEASE.txt | 13 +++++++++----
configure.ac | 4 ++--
include/laszip/laszip.hpp | 34 +++++++++++++++++-----------------
4 files changed, 31 insertions(+), 26 deletions(-)
diffs (122 lines):
diff -r 0bf6c8e259d1 -r e4b6bd24319b CMakeLists.txt
--- a/CMakeLists.txt Wed Jun 22 09:13:09 2011 -0700
+++ b/CMakeLists.txt Thu Jun 23 08:49:06 2011 -0500
@@ -9,11 +9,11 @@
project(laszip)
-SET(LASZIP_VERSION_MAJOR "1")
-SET(LASZIP_VERSION_MINOR "2")
+SET(LASZIP_VERSION_MAJOR "2")
+SET(LASZIP_VERSION_MINOR "0")
SET(LASZIP_VERSION_PATCH "0")
set(VERSION "${LASZIP_VERSION_MAJOR}.${LASZIP_VERSION_MINOR}.${LASZIP_VERSION_PATCH}")
-SET(LASZIP_LIB_SOVERSION "3.0.1")
+SET(LASZIP_LIB_SOVERSION "4.0.1")
# Name of C++ library
set(LASZIP_LIB_NAME laszip)
diff -r 0bf6c8e259d1 -r e4b6bd24319b HOWTORELEASE.txt
--- a/HOWTORELEASE.txt Wed Jun 22 09:13:09 2011 -0700
+++ b/HOWTORELEASE.txt Thu Jun 23 08:49:06 2011 -0500
@@ -19,16 +19,21 @@
- CMakeLists.txt
- * SET(LASZIP_VERSION_MAJOR "1")
+ * SET(LASZIP_VERSION_MAJOR "2")
* SET(LASZIP_VERSION_MINOR "0")
- * SET(LASZIP_VERSION_PATCH "0b1")
+ * SET(LASZIP_VERSION_PATCH "0")
- include/laszip/laszip.hpp
- * #define LASZIP_VERSION_MAJOR 1
+ * #define LASZIP_VERSION_MAJOR 2
* #define LASZIP_VERSION_MINOR 0
- * #define LASZIP_VERSION_REV 0b1
+ * #define LASZIP_VERSION_REV 0
+ - configure.ac
+
+ * m4_define([laszip_version_major], [2])
+ * m4_define([laszip_version_minor], [0])
+ * m4_define([laszip_version_micro], [0])
2) Update README to include any relevant info about the release that
diff -r 0bf6c8e259d1 -r e4b6bd24319b configure.ac
--- a/configure.ac Wed Jun 22 09:13:09 2011 -0700
+++ b/configure.ac Thu Jun 23 08:49:06 2011 -0500
@@ -2,9 +2,9 @@
dnl
dnl This is main autoconf bootstrap script of libLAS project.
dnl
-m4_define([laszip_version_major], [1])
+m4_define([laszip_version_major], [2])
m4_define([laszip_version_minor], [0])
-m4_define([laszip_version_micro], [b1])
+m4_define([laszip_version_micro], [0])
m4_define([laszip_version],
[laszip_version_major.laszip_version_minor.laszip_version_micro])
diff -r 0bf6c8e259d1 -r e4b6bd24319b include/laszip/laszip.hpp
--- a/include/laszip/laszip.hpp Wed Jun 22 09:13:09 2011 -0700
+++ b/include/laszip/laszip.hpp Thu Jun 23 08:49:06 2011 -0500
@@ -1,13 +1,13 @@
-/*
-===============================================================================
-
- FILE: laszip.hpp
-
- CONTENTS:
-
+/*
+===============================================================================
+
+ FILE: laszip.hpp
+
+ CONTENTS:
+
Contains LASitem and LASchunk structs as well as the IDs of the currently
- supported entropy coding scheme
-
+ supported entropy coding scheme
+
PROGRAMMERS:
martin.isenburg at gmail.com
@@ -30,11 +30,11 @@
20 March 2011 -- incrementing LASZIP_VERSION to 1.2 for improved compression
10 January 2011 -- licensing change for LGPL release and liblas integration
12 December 2010 -- refactored from lasdefinitions after movies with silke
-
-===============================================================================
-*/
-#ifndef LASZIP_HPP
-#define LASZIP_HPP
+
+===============================================================================
+*/
+#ifndef LASZIP_HPP
+#define LASZIP_HPP
#if defined(_MSC_VER) && (_MSC_VER < 1300)
#define LZ_WIN32_VC6
@@ -43,8 +43,8 @@
typedef long long SIGNED_INT64;
#endif
-#define LASZIP_VERSION_MAJOR 1
-#define LASZIP_VERSION_MINOR 2
+#define LASZIP_VERSION_MAJOR 2
+#define LASZIP_VERSION_MINOR 0
#define LASZIP_VERSION_REVISION 0
#define LASZIP_COMPRESSOR_NONE 0
@@ -123,4 +123,4 @@
char* error_string;
};
-#endif
+#endif
More information about the Liblas-commits
mailing list