increase version number to 3.1

Mon, 18 Dec 2023 14:14:47 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 18 Dec 2023 14:14:47 +0100
changeset 759
475335643af4
parent 758
6cd62ce7e353
child 760
52e49533e7b4

increase version number to 3.1

remove per-file version information
from Doxygen output

configure file | annotate | diff | comparison | revisions
make/project.xml file | annotate | diff | comparison | revisions
src/cx/array_list.h file | annotate | diff | comparison | revisions
src/cx/buffer.h file | annotate | diff | comparison | revisions
src/cx/collection.h file | annotate | diff | comparison | revisions
src/cx/common.h file | annotate | diff | comparison | revisions
src/cx/compare.h file | annotate | diff | comparison | revisions
src/cx/hash_key.h file | annotate | diff | comparison | revisions
src/cx/hash_map.h file | annotate | diff | comparison | revisions
src/cx/iterator.h file | annotate | diff | comparison | revisions
src/cx/linked_list.h file | annotate | diff | comparison | revisions
src/cx/list.h file | annotate | diff | comparison | revisions
src/cx/map.h file | annotate | diff | comparison | revisions
src/cx/mempool.h file | annotate | diff | comparison | revisions
src/cx/printf.h file | annotate | diff | comparison | revisions
src/cx/string.h file | annotate | diff | comparison | revisions
src/cx/utils.h file | annotate | diff | comparison | revisions
--- a/configure	Mon Dec 18 14:05:12 2023 +0100
+++ b/configure	Mon Dec 18 14:14:47 2023 +0100
@@ -440,8 +440,8 @@
 
         cat >> "$TEMP_DIR/make.mk" << __EOF__
 # library version
-VERSION=3.0.1
-LIBVERSION=4.0.0
+VERSION=3.1.0
+LIBVERSION=4.1.0
 LIBVERSION_MAJOR=4
 
 # build directory structure !! do not change or override !!
--- a/make/project.xml	Mon Dec 18 14:05:12 2023 +0100
+++ b/make/project.xml	Mon Dec 18 14:14:47 2023 +0100
@@ -10,8 +10,8 @@
 	<dependency>
 		<make>
 # library version
-VERSION=3.0.1
-LIBVERSION=4.0.0
+VERSION=3.1.0
+LIBVERSION=4.1.0
 LIBVERSION_MAJOR=4
 
 # build directory structure !! do not change or override !!
--- a/src/cx/array_list.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/array_list.h	Mon Dec 18 14:14:47 2023 +0100
@@ -31,7 +31,6 @@
  * \details Also provides several low-level functions for custom array list implementations.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/buffer.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/buffer.h	Mon Dec 18 14:14:47 2023 +0100
@@ -40,7 +40,6 @@
  *
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/collection.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/collection.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Common definitions for various collection implementations.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/common.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/common.h	Mon Dec 18 14:14:47 2023 +0100
@@ -33,7 +33,6 @@
  *
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  *
  * \mainpage UAP Common Extensions
@@ -84,7 +83,7 @@
 #define UCX_VERSION_MAJOR   3
 
 /** Minor UCX version as integer constant. */
-#define UCX_VERSION_MINOR   0
+#define UCX_VERSION_MINOR   1
 
 /** Version constant which ensures to increase monotonically. */
 #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR)
--- a/src/cx/compare.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/compare.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief A collection of simple compare functions.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/hash_key.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/hash_key.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Interface for map implementations.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/hash_map.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/hash_map.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Hash map implementation.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/iterator.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/iterator.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Interface for iterator implementations.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/linked_list.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/linked_list.h	Mon Dec 18 14:14:47 2023 +0100
@@ -31,7 +31,6 @@
  * \details Also provides several low-level functions for custom linked list implementations.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/list.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/list.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Interface for list implementations.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/map.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/map.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Interface for map implementations.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/mempool.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/mempool.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Interface for memory pool implementations.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/printf.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/printf.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Wrapper for write functions with a printf-like interface.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/string.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/string.h	Mon Dec 18 14:14:47 2023 +0100
@@ -30,7 +30,6 @@
  * \brief Strings that know their length.
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 
--- a/src/cx/utils.h	Mon Dec 18 14:05:12 2023 +0100
+++ b/src/cx/utils.h	Mon Dec 18 14:14:47 2023 +0100
@@ -33,7 +33,6 @@
  *
  * \author Mike Becker
  * \author Olaf Wintermann
- * \version 3.0
  * \copyright 2-Clause BSD License
  */
 

mercurial