Skip to content

Commit 888074b

Browse files
committed
[Release] Release of the 1.00.8 version
1 parent 292614f commit 888074b

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include (config/project_config_embeddable.cmake)
1010
project (airinv)
1111
set_project_names (airinv AirInv)
1212
set_project_brief ("C++ Simulated Airline Inventory Management System Library")
13-
set_project_versions (1 00 7)
13+
set_project_versions (1 00 8)
1414

1515
##
1616
# Project options

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* Mon May 01 2023 Denis Arnaud <denis.arnaud_fedora at m4x.org> - 1.00.8
2+
- Upgraded CMake support files
3+
14
* Sun Jun 26 2022 Denis Arnaud <denis.arnaud_fedora at m4x.org> - 1.00.7
25
- Upgraded CMake support files
36

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* 2023-05-01:
2+
- Version 1.00.8
3+
- Upgraded CMake support files
4+
15
* 2022-06-26:
26
- Version 1.00.7
37
- Upgraded CMake support files

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ $ dnf -y install airinv-devel airinv-doc
2323

2424
You can also get the RPM packages (which may work on Linux
2525
distributions like Suse and Mandriva) from the Fedora repository
26-
(_e.g._, for Fedora 32,
27-
https://fr2.rpmfind.net/linux/RPM/fedora/32/x86_64/)
26+
(_e.g._, for Fedora 38,
27+
https://fr2.rpmfind.net/linux/RPM/fedora/38/x86_64/)
2828

2929

3030
## Building the library and test binary from Git repository
@@ -64,7 +64,7 @@ To customise the following to your environment, you can alter the path
6464
to the installation directory:
6565
```bash
6666
export INSTALL_BASEDIR="${HOME}/dev/deliveries"
67-
export AIRINV_VER="1.00.7"
67+
export AIRINV_VER="1.00.8"
6868
if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi
6969
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX"
7070
```

autogen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fi
5151
#
5252
VERSION_MAJOR=1
5353
VERSION_MINOR=00
54-
VERSION_PATCH=7
54+
VERSION_PATCH=8
5555
VERSION_TMP_STRING=`grep "set_project_versions" CMakeLists.txt | sed -e "s/set_project_versions.*\([0-9]\+.\+[0-9]\+.\+[0-9]\+\).\+/\1/"`
5656
VERSION_STRING=`echo "${VERSION_TMP_STRING}" | grep "^[0-9]\+.[0-9]\+.[0-9]\+$"`
5757

0 commit comments

Comments
 (0)