Skip to content

Commit

Permalink
Update release notes and fix build with recent VisualStudio (open-eid…
Browse files Browse the repository at this point in the history
…#254)

Signed-off-by: Raul Metsma <[email protected]>
  • Loading branch information
metsma authored and iannaska committed Nov 13, 2018
1 parent 2e1127c commit 0b81460
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
10 changes: 10 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Libdigidocpp library [3.13.8](https://github.com/open-eid/libdigidocpp/releases/tag/v3.13.8) release notes
--------------------------------------
- Use ETag instead Last-Modified to verify cached file (#238)
- Fix signature verify with OpenSSL 1.1 (#240)
- Check OCSP TM OID (#247)
- Handle TSA error code 429 and cleanup some code (#250)
- Upload artifacts to AWS (#253)

[Full Changelog](https://github.com/open-eid/libdigidocpp/compare/v3.13.7...v3.13.8)

Libdigidocpp library [3.13.7](https://github.com/open-eid/libdigidocpp/releases/tag/v3.13.7) release notes
--------------------------------------
- Remove compiler warnings
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
param(
[string]$target = "C:\build",
[string]$buildver = "0",
[string]$msiversion = "3.13.7.$buildver",
[string]$msiversion = "3.13.8.$buildver",
[string]$msi_name = "libdigidocpp-$msiversion$env:VER_SUFFIX.msi",
[string]$msbuild = "C:\Program Files (x86)\MSBuild\$Env:VisualStudioVersion\Bin\MSBuild.exe",
[string]$cmake = "C:\Program Files (x86)\CMake\bin\cmake.exe",
Expand Down
6 changes: 5 additions & 1 deletion src/Exports.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@
#else
#define DEPRECATED_DIGIDOCPP
#endif
#define DIGIDOCPP_NOEXCEPT _NOEXCEPT
#if _MSC_VER >= 1900
#define DIGIDOCPP_NOEXCEPT noexcept
#else
#define DIGIDOCPP_NOEXCEPT
#endif
#define DIGIDOCPP_WARNING_PUSH __pragma(warning(push))
#define DIGIDOCPP_WARNING_POP __pragma(warning(pop))
#define DIGIDOCPP_WARNING_DISABLE_CLANG(text)
Expand Down

0 comments on commit 0b81460

Please sign in to comment.