Skip to content

Commit f2b9bb7

Browse files
authored
Update version number (#1142)
IB-7389 Signed-off-by: Raul Metsma <raul@metsma.ee> Signed-off-by: Raul Metsma <raul@metsma.ee>
1 parent d927543 commit f2b9bb7

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: CI
22
on: [push, pull_request]
3+
permissions:
4+
contents: read
35
env:
46
BUILD_NUMBER: ${{ github.run_number }}
57
MAKEFLAGS: -j3
@@ -8,7 +10,7 @@ jobs:
810
name: Build on macOS
911
runs-on: macos-latest
1012
env:
11-
MACOSX_DEPLOYMENT_TARGET: 10.14
13+
MACOSX_DEPLOYMENT_TARGET: 10.15
1214
steps:
1315
- name: Checkout
1416
uses: actions/checkout@v3
@@ -51,22 +53,22 @@ jobs:
5153
container: ${{ matrix.container }}
5254
strategy:
5355
matrix:
54-
container: ['ubuntu:20.04', 'ubuntu:22.04']
56+
container: ['ubuntu:20.04', 'ubuntu:22.04', 'ubuntu:22.10']
5557
env:
5658
DEBIAN_FRONTEND: noninteractive
5759
DEBFULLNAME: github-actions
5860
DEBEMAIL: github-actions@github.com
5961
steps:
62+
- name: Install dependencies
63+
if: matrix.container == 'ubuntu:20.04'
64+
run: apt update -qq && apt install --no-install-recommends -y git lsb-release fakeroot build-essential devscripts cdbs pkg-config cmake libldap2-dev gettext libpcsclite-dev libssl-dev libqt5svg5-dev qttools5-dev-tools qttools5-dev lintian
65+
- name: Install dependencies
66+
if: matrix.container != 'ubuntu:20.04'
67+
run: apt update -qq && apt install --no-install-recommends -y git lsb-release fakeroot build-essential devscripts cdbs pkg-config cmake libldap2-dev gettext libpcsclite-dev libssl-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools libqt6core5compat6-dev lintian
6068
- name: Checkout
61-
uses: actions/checkout@v1
69+
uses: actions/checkout@v3
6270
with:
6371
submodules: recursive
64-
- name: Install dependencies
65-
if: matrix.container != 'ubuntu:22.04'
66-
run: apt update -qq && apt install --no-install-recommends -y lsb-release fakeroot build-essential devscripts cdbs pkg-config cmake libldap2-dev gettext libpcsclite-dev libssl-dev libqt5svg5-dev qttools5-dev-tools qttools5-dev lintian
67-
- name: Install dependencies
68-
if: matrix.container == 'ubuntu:22.04'
69-
run: apt update -qq && apt install --no-install-recommends -y lsb-release fakeroot build-essential devscripts cdbs pkg-config cmake libldap2-dev gettext libpcsclite-dev libssl-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools libqt6core5compat6-dev lintian
7072
- name: Download artifact
7173
uses: dawidd6/action-download-artifact@v2
7274
with:
@@ -101,20 +103,16 @@ jobs:
101103
container: ${{ matrix.container }}
102104
strategy:
103105
matrix:
104-
container: ['fedora:35', 'fedora:36']
106+
container: ['fedora:36', 'fedora:37']
105107
env:
106108
MAKEFLAGS: -j3
107109
steps:
110+
- name: Install Deps
111+
run: dnf install -y git gcc-c++ cmake rpm-build gettext openssl-devel openldap-devel pcsc-lite-devel qt6-qtsvg-devel qt6-qttools-devel qt6-qt5compat-devel
108112
- name: Checkout
109-
uses: actions/checkout@v1
113+
uses: actions/checkout@v3
110114
with:
111115
submodules: recursive
112-
- name: Install Deps
113-
if: matrix.container == 'fedora:35'
114-
run: dnf install -y gcc-c++ cmake rpm-build gettext openssl-devel openldap-devel pcsc-lite-devel qt5-qtsvg-devel qt5-linguist
115-
- name: Install Deps
116-
if: matrix.container != 'fedora:35'
117-
run: dnf install -y gcc-c++ cmake rpm-build gettext openssl-devel openldap-devel pcsc-lite-devel qt6-qtsvg-devel qt6-qttools-devel qt6-qt5compat-devel
118116
- name: Download artifact
119117
uses: dawidd6/action-download-artifact@v2
120118
with:
@@ -152,7 +150,7 @@ jobs:
152150
toolset: 14.29
153151
- vcver: 143
154152
image: windows-2022
155-
toolset: 14.33
153+
toolset: 14.34
156154
- vcver: 141
157155
arch: x86
158156
qtver: 5.12.12

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
22
if(POLICY CMP0074)
33
cmake_policy(SET CMP0074 NEW)
44
endif()
5-
project(qdigidoc4 VERSION 4.2.13)
5+
project(qdigidoc4 VERSION 4.2.14)
66

77
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
88
set(CMAKE_INCLUDE_CURRENT_DIR ON)

client/Diagnostics.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ void Diagnostics::generalInfo(QTextStream &s) const
133133
constexpr auto APDU = &QByteArray::fromHex;
134134
auto printAID = [&](const QString &label, const QByteArray &apdu)
135135
{
136+
constexpr auto APDU = &QByteArray::fromHex;
136137
QPCSCReader::Result r = reader.transfer(apdu);
137138
s << label << ": " << r.SW.toHex();
138139
if (r.SW == APDU("9000")) s << " (OK)";

0 commit comments

Comments
 (0)