2020-01-02 02:05:09 +01:00
|
|
|
/* version.h - header file with major and minor library version numbers as characters
|
2023-12-20 13:00:00 +01:00
|
|
|
* written by C. R. Helmrich, last modified in 2023 - see License.htm for legal notices
|
2020-01-02 02:05:09 +01:00
|
|
|
*
|
2020-10-23 10:00:00 +02:00
|
|
|
* The copyright in this software is being made available under the exhale Copyright License
|
2020-01-02 02:05:09 +01:00
|
|
|
* and comes with ABSOLUTELY NO WARRANTY. This software may be subject to other third-
|
|
|
|
* party rights, including patent rights. No such rights are granted under this License.
|
|
|
|
*
|
2023-12-20 13:00:00 +01:00
|
|
|
* Copyright (c) 2018-2024 Christian R. Helmrich, project ecodis. All rights reserved.
|
2020-01-02 02:05:09 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EXHALELIB_VERSION_MAJOR
|
|
|
|
# define EXHALELIB_VERSION_MAJOR "1"
|
|
|
|
#endif
|
|
|
|
#ifndef EXHALELIB_VERSION_MINOR
|
2022-10-23 19:00:00 +02:00
|
|
|
# define EXHALELIB_VERSION_MINOR "2"
|
2020-01-02 02:05:09 +01:00
|
|
|
#endif
|
|
|
|
#ifndef EXHALELIB_VERSION_BUGFIX
|
2023-12-20 13:00:00 +01:00
|
|
|
# define EXHALELIB_VERSION_BUGFIX ".1" // "RC" or ".0", ".1", ...
|
2020-01-02 02:05:09 +01:00
|
|
|
#endif
|