File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
11
Libdigidocpp library [ 3.13.7] ( https://github.com/open-eid/libdigidocpp/releases/tag/v3.13.7 ) release notes
2
12
--------------------------------------
3
13
- Remove compiler warnings
Original file line number Diff line number Diff line change 1
1
param (
2
2
[string ]$target = " C:\build" ,
3
3
[string ]$buildver = " 0" ,
4
- [string ]$msiversion = " 3.13.7 .$buildver " ,
4
+ [string ]$msiversion = " 3.13.8 .$buildver " ,
5
5
[string ]$msi_name = " libdigidocpp-$msiversion$env: VER_SUFFIX .msi" ,
6
6
[string ]$msbuild = " C:\Program Files (x86)\MSBuild\$Env: VisualStudioVersion \Bin\MSBuild.exe" ,
7
7
[string ]$cmake = " C:\Program Files (x86)\CMake\bin\cmake.exe" ,
Original file line number Diff line number Diff line change 31
31
#else
32
32
#define DEPRECATED_DIGIDOCPP
33
33
#endif
34
- #define DIGIDOCPP_NOEXCEPT _NOEXCEPT
34
+ #if _MSC_VER >= 1900
35
+ #define DIGIDOCPP_NOEXCEPT noexcept
36
+ #else
37
+ #define DIGIDOCPP_NOEXCEPT
38
+ #endif
35
39
#define DIGIDOCPP_WARNING_PUSH __pragma (warning(push))
36
40
#define DIGIDOCPP_WARNING_POP __pragma (warning(pop))
37
41
#define DIGIDOCPP_WARNING_DISABLE_CLANG (text)
You can’t perform that action at this time.
0 commit comments