Skip to content

Commit 0b81460

Browse files
metsmaiannaska
authored and
iannaska
committed
Update release notes and fix build with recent VisualStudio (#254)
Signed-off-by: Raul Metsma <[email protected]>
1 parent 2e1127c commit 0b81460

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

RELEASE-NOTES.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Libdigidocpp library [3.13.8](https://github.com/open-eid/libdigidocpp/releases/tag/v3.13.8) release notes
2+
--------------------------------------
3+
- Use ETag instead Last-Modified to verify cached file (#238)
4+
- Fix signature verify with OpenSSL 1.1 (#240)
5+
- Check OCSP TM OID (#247)
6+
- Handle TSA error code 429 and cleanup some code (#250)
7+
- Upload artifacts to AWS (#253)
8+
9+
[Full Changelog](https://github.com/open-eid/libdigidocpp/compare/v3.13.7...v3.13.8)
10+
111
Libdigidocpp library [3.13.7](https://github.com/open-eid/libdigidocpp/releases/tag/v3.13.7) release notes
212
--------------------------------------
313
- Remove compiler warnings

build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
param(
22
[string]$target = "C:\build",
33
[string]$buildver = "0",
4-
[string]$msiversion = "3.13.7.$buildver",
4+
[string]$msiversion = "3.13.8.$buildver",
55
[string]$msi_name = "libdigidocpp-$msiversion$env:VER_SUFFIX.msi",
66
[string]$msbuild = "C:\Program Files (x86)\MSBuild\$Env:VisualStudioVersion\Bin\MSBuild.exe",
77
[string]$cmake = "C:\Program Files (x86)\CMake\bin\cmake.exe",

src/Exports.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@
3131
#else
3232
#define DEPRECATED_DIGIDOCPP
3333
#endif
34-
#define DIGIDOCPP_NOEXCEPT _NOEXCEPT
34+
#if _MSC_VER >= 1900
35+
#define DIGIDOCPP_NOEXCEPT noexcept
36+
#else
37+
#define DIGIDOCPP_NOEXCEPT
38+
#endif
3539
#define DIGIDOCPP_WARNING_PUSH __pragma(warning(push))
3640
#define DIGIDOCPP_WARNING_POP __pragma(warning(pop))
3741
#define DIGIDOCPP_WARNING_DISABLE_CLANG(text)

0 commit comments

Comments
 (0)