Skip to content

Commit c1aa0fd

Browse files
author
Allen Winter
committed
various - prep for 1.8.1 release
1 parent 54c533b commit c1aa0fd

File tree

10 files changed

+26
-10
lines changed

10 files changed

+26
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ option(${PROJECT_NAME}_TESTS "Build the tests" ON)
4141

4242
set(${PROJECT_NAME}_VERSION_MAJOR 1)
4343
set(${PROJECT_NAME}_VERSION_MINOR 8)
44-
set(${PROJECT_NAME}_VERSION_PATCH 0)
44+
set(${PROJECT_NAME}_VERSION_PATCH 1)
4545
set(${PROJECT_NAME}_VERSION ${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH})
4646
set(${PROJECT_NAME}_SOVERSION ${${PROJECT_NAME}_VERSION_MAJOR})
4747

autogen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from autogen.autogen import autogen
33

44
project = "KDReports"
5-
version = "1.8.0"
5+
version = "1.8.1"
66
subprojects = ["KDReports"]
77
prefixed = True
88

debian.changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
kdreports (1.8.1) final; urgency=low
2+
3+
* 1.8.1 final release
4+
5+
-- Allen Winter <allen.winter@kdab.com> Sun, 11 Oct 2020 16:00:00 -0500
6+
17
kdreports (1.8.0) final; urgency=low
28

39
* 1.8.0 final release

doc/CHANGES_1_8.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ NOTE:
99
"kdreportsd1" to "kdreports1d". Both the qmake and CMake build systems have been
1010
adapted accordingly.
1111

12+
In release 1.8.1:
13+
-----------------
14+
* Fix compiling against a Qt namespace build
15+
* Fix static linking examples and unittests in the CMake buildsystem
16+
* small buildsystem improvements
17+
1218
Features:
1319
---------
1420

gen-forward-headers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from autogen.autogen import autogen
33

44
project = "KDReports"
5-
version = "1.8.0"
5+
version = "1.8.1"
66
subprojects = ["KDReports"]
77
prefixed = True
88

kdreports.dsc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Format: 1.0
22
Source: kdreports
3-
Version: 1.8.0
3+
Version: 1.8.1
44
Binary: kdreports
55
Maintainer: Allen Winter <allen.winter@kdab.com>
66
Architecture: any
77
Build-Depends: debhelper (>=9), cdbs, cmake, libqt4-dev
88

99
Files:
10-
00000000000000000000000000000000 00000 kdreports-1.8.0.tar.gz
10+
00000000000000000000000000000000 00000 kdreports-1.8.1.tar.gz

kdreports.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SUBDIRS = include src
44
!no_examples: SUBDIRS += examples
55
unittests: SUBDIRS += unittests
66
CONFIG += ordered
7-
VERSION = 1.8.0
7+
VERSION = 1.8.1
88
MAJOR_VERSION = 1
99

1010
unix:DEFAULT_INSTALL_PREFIX = /usr/local/KDAB/KDReports-$$VERSION

kdreports.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: kdreports
2-
Version: 1.8.0
2+
Version: 1.8.1
33
Release: 1
44
Summary: A Qt library for creating printable reports
55
Source: %{name}-%{version}.tar.gz
@@ -76,6 +76,8 @@ cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
7676
%{_libdir}/libkdreports.so
7777

7878
%changelog
79+
* Sun Oct 11 2020 Allen Winter <allen.winter@kdab.com> 1.8.1
80+
1.8.1 final
7981
* Mon Apr 02 2018 Allen Winter <allen.winter@kdab.com> 1.8.0
8082
1.8.0 final
8183
* Thu Aug 11 2016 Allen Winter <allen.winter@kdab.com> 1.7.1

qt5-kdreports.dsc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Format: 1.0
22
Source: kdreports
3-
Version: 1.8.0
3+
Version: 1.8.1
44
Binary: kdreports
55
Maintainer: Allen Winter <allen.winter@kdab.com>
66
Architecture: any
77
Build-Depends: debhelper (>=9), cdbs, cmake, qt5-default, qtbase5-dev
88

99
Files:
10-
00000000000000000000000000000000 00000 qt5-kdreports-1.8.0.tar.gz
10+
00000000000000000000000000000000 00000 qt5-kdreports-1.8.1.tar.gz

qt5-kdreports.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: qt5-kdreports
2-
Version: 1.8.0
2+
Version: 1.8.1
33
Release: 1
44
Summary: A Qt library for creating printable reports
55
Source: %{name}-%{version}.tar.gz
@@ -76,6 +76,8 @@ cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
7676
%{_libdir}/libkdreports.so
7777

7878
%changelog
79+
* Sun Oct 11 2020 Allen Winter <allen.winter@kdab.com> 1.8.1
80+
1.8.1 final
7981
* Mon Apr 02 2018 Allen Winter <allen.winter@kdab.com> 1.8.0
8082
1.8.0 final
8183
* Thu Aug 11 2016 Allen Winter <allen.winter@kdab.com> 1.7.1

0 commit comments

Comments
 (0)