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
     1.1 --- a/configure	Mon Dec 18 14:05:12 2023 +0100
     1.2 +++ b/configure	Mon Dec 18 14:14:47 2023 +0100
     1.3 @@ -440,8 +440,8 @@
     1.4  
     1.5          cat >> "$TEMP_DIR/make.mk" << __EOF__
     1.6  # library version
     1.7 -VERSION=3.0.1
     1.8 -LIBVERSION=4.0.0
     1.9 +VERSION=3.1.0
    1.10 +LIBVERSION=4.1.0
    1.11  LIBVERSION_MAJOR=4
    1.12  
    1.13  # build directory structure !! do not change or override !!
     2.1 --- a/make/project.xml	Mon Dec 18 14:05:12 2023 +0100
     2.2 +++ b/make/project.xml	Mon Dec 18 14:14:47 2023 +0100
     2.3 @@ -10,8 +10,8 @@
     2.4  	<dependency>
     2.5  		<make>
     2.6  # library version
     2.7 -VERSION=3.0.1
     2.8 -LIBVERSION=4.0.0
     2.9 +VERSION=3.1.0
    2.10 +LIBVERSION=4.1.0
    2.11  LIBVERSION_MAJOR=4
    2.12  
    2.13  # build directory structure !! do not change or override !!
     3.1 --- a/src/cx/array_list.h	Mon Dec 18 14:05:12 2023 +0100
     3.2 +++ b/src/cx/array_list.h	Mon Dec 18 14:14:47 2023 +0100
     3.3 @@ -31,7 +31,6 @@
     3.4   * \details Also provides several low-level functions for custom array list implementations.
     3.5   * \author Mike Becker
     3.6   * \author Olaf Wintermann
     3.7 - * \version 3.0
     3.8   * \copyright 2-Clause BSD License
     3.9   */
    3.10  
     4.1 --- a/src/cx/buffer.h	Mon Dec 18 14:05:12 2023 +0100
     4.2 +++ b/src/cx/buffer.h	Mon Dec 18 14:14:47 2023 +0100
     4.3 @@ -40,7 +40,6 @@
     4.4   *
     4.5   * \author Mike Becker
     4.6   * \author Olaf Wintermann
     4.7 - * \version 3.0
     4.8   * \copyright 2-Clause BSD License
     4.9   */
    4.10  
     5.1 --- a/src/cx/collection.h	Mon Dec 18 14:05:12 2023 +0100
     5.2 +++ b/src/cx/collection.h	Mon Dec 18 14:14:47 2023 +0100
     5.3 @@ -30,7 +30,6 @@
     5.4   * \brief Common definitions for various collection implementations.
     5.5   * \author Mike Becker
     5.6   * \author Olaf Wintermann
     5.7 - * \version 3.0
     5.8   * \copyright 2-Clause BSD License
     5.9   */
    5.10  
     6.1 --- a/src/cx/common.h	Mon Dec 18 14:05:12 2023 +0100
     6.2 +++ b/src/cx/common.h	Mon Dec 18 14:14:47 2023 +0100
     6.3 @@ -33,7 +33,6 @@
     6.4   *
     6.5   * \author Mike Becker
     6.6   * \author Olaf Wintermann
     6.7 - * \version 3.0
     6.8   * \copyright 2-Clause BSD License
     6.9   *
    6.10   * \mainpage UAP Common Extensions
    6.11 @@ -84,7 +83,7 @@
    6.12  #define UCX_VERSION_MAJOR   3
    6.13  
    6.14  /** Minor UCX version as integer constant. */
    6.15 -#define UCX_VERSION_MINOR   0
    6.16 +#define UCX_VERSION_MINOR   1
    6.17  
    6.18  /** Version constant which ensures to increase monotonically. */
    6.19  #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR)
     7.1 --- a/src/cx/compare.h	Mon Dec 18 14:05:12 2023 +0100
     7.2 +++ b/src/cx/compare.h	Mon Dec 18 14:14:47 2023 +0100
     7.3 @@ -30,7 +30,6 @@
     7.4   * \brief A collection of simple compare functions.
     7.5   * \author Mike Becker
     7.6   * \author Olaf Wintermann
     7.7 - * \version 3.0
     7.8   * \copyright 2-Clause BSD License
     7.9   */
    7.10  
     8.1 --- a/src/cx/hash_key.h	Mon Dec 18 14:05:12 2023 +0100
     8.2 +++ b/src/cx/hash_key.h	Mon Dec 18 14:14:47 2023 +0100
     8.3 @@ -30,7 +30,6 @@
     8.4   * \brief Interface for map implementations.
     8.5   * \author Mike Becker
     8.6   * \author Olaf Wintermann
     8.7 - * \version 3.0
     8.8   * \copyright 2-Clause BSD License
     8.9   */
    8.10  
     9.1 --- a/src/cx/hash_map.h	Mon Dec 18 14:05:12 2023 +0100
     9.2 +++ b/src/cx/hash_map.h	Mon Dec 18 14:14:47 2023 +0100
     9.3 @@ -30,7 +30,6 @@
     9.4   * \brief Hash map implementation.
     9.5   * \author Mike Becker
     9.6   * \author Olaf Wintermann
     9.7 - * \version 3.0
     9.8   * \copyright 2-Clause BSD License
     9.9   */
    9.10  
    10.1 --- a/src/cx/iterator.h	Mon Dec 18 14:05:12 2023 +0100
    10.2 +++ b/src/cx/iterator.h	Mon Dec 18 14:14:47 2023 +0100
    10.3 @@ -30,7 +30,6 @@
    10.4   * \brief Interface for iterator implementations.
    10.5   * \author Mike Becker
    10.6   * \author Olaf Wintermann
    10.7 - * \version 3.0
    10.8   * \copyright 2-Clause BSD License
    10.9   */
   10.10  
    11.1 --- a/src/cx/linked_list.h	Mon Dec 18 14:05:12 2023 +0100
    11.2 +++ b/src/cx/linked_list.h	Mon Dec 18 14:14:47 2023 +0100
    11.3 @@ -31,7 +31,6 @@
    11.4   * \details Also provides several low-level functions for custom linked list implementations.
    11.5   * \author Mike Becker
    11.6   * \author Olaf Wintermann
    11.7 - * \version 3.0
    11.8   * \copyright 2-Clause BSD License
    11.9   */
   11.10  
    12.1 --- a/src/cx/list.h	Mon Dec 18 14:05:12 2023 +0100
    12.2 +++ b/src/cx/list.h	Mon Dec 18 14:14:47 2023 +0100
    12.3 @@ -30,7 +30,6 @@
    12.4   * \brief Interface for list implementations.
    12.5   * \author Mike Becker
    12.6   * \author Olaf Wintermann
    12.7 - * \version 3.0
    12.8   * \copyright 2-Clause BSD License
    12.9   */
   12.10  
    13.1 --- a/src/cx/map.h	Mon Dec 18 14:05:12 2023 +0100
    13.2 +++ b/src/cx/map.h	Mon Dec 18 14:14:47 2023 +0100
    13.3 @@ -30,7 +30,6 @@
    13.4   * \brief Interface for map implementations.
    13.5   * \author Mike Becker
    13.6   * \author Olaf Wintermann
    13.7 - * \version 3.0
    13.8   * \copyright 2-Clause BSD License
    13.9   */
   13.10  
    14.1 --- a/src/cx/mempool.h	Mon Dec 18 14:05:12 2023 +0100
    14.2 +++ b/src/cx/mempool.h	Mon Dec 18 14:14:47 2023 +0100
    14.3 @@ -30,7 +30,6 @@
    14.4   * \brief Interface for memory pool implementations.
    14.5   * \author Mike Becker
    14.6   * \author Olaf Wintermann
    14.7 - * \version 3.0
    14.8   * \copyright 2-Clause BSD License
    14.9   */
   14.10  
    15.1 --- a/src/cx/printf.h	Mon Dec 18 14:05:12 2023 +0100
    15.2 +++ b/src/cx/printf.h	Mon Dec 18 14:14:47 2023 +0100
    15.3 @@ -30,7 +30,6 @@
    15.4   * \brief Wrapper for write functions with a printf-like interface.
    15.5   * \author Mike Becker
    15.6   * \author Olaf Wintermann
    15.7 - * \version 3.0
    15.8   * \copyright 2-Clause BSD License
    15.9   */
   15.10  
    16.1 --- a/src/cx/string.h	Mon Dec 18 14:05:12 2023 +0100
    16.2 +++ b/src/cx/string.h	Mon Dec 18 14:14:47 2023 +0100
    16.3 @@ -30,7 +30,6 @@
    16.4   * \brief Strings that know their length.
    16.5   * \author Mike Becker
    16.6   * \author Olaf Wintermann
    16.7 - * \version 3.0
    16.8   * \copyright 2-Clause BSD License
    16.9   */
   16.10  
    17.1 --- a/src/cx/utils.h	Mon Dec 18 14:05:12 2023 +0100
    17.2 +++ b/src/cx/utils.h	Mon Dec 18 14:14:47 2023 +0100
    17.3 @@ -33,7 +33,6 @@
    17.4   *
    17.5   * \author Mike Becker
    17.6   * \author Olaf Wintermann
    17.7 - * \version 3.0
    17.8   * \copyright 2-Clause BSD License
    17.9   */
   17.10  

mercurial