Skip to content

Commit 714683b

Browse files
authored
Merge pull request #793 from microsoft/maxgolov/release_3.5.57
Prepare for release 3.5.57
2 parents e54f1c3 + 6356280 commit 714683b

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

lib/include/public/Version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
#define MAT_VERSION_HPP
77
// WARNING: DO NOT MODIFY THIS FILE!
88
// This file has been automatically generated, manual changes will be lost.
9-
#define BUILD_VERSION_STR "3.5.25.1"
10-
#define BUILD_VERSION 3,5,25,1
9+
#define BUILD_VERSION_STR "3.5.57.1"
10+
#define BUILD_VERSION 3,5,57,1
1111

1212
#ifndef RESOURCE_COMPILER_INVOKED
1313
#include <stdint.h>
@@ -33,7 +33,7 @@ namespace MAT_NS_BEGIN {
3333
uint64_t const Version =
3434
((uint64_t)3 << 48) |
3535
((uint64_t)5 << 32) |
36-
((uint64_t)25 << 16) |
36+
((uint64_t)57 << 16) |
3737
((uint64_t)1);
3838

3939
} MAT_NS_END

lib/include/public/Version.hpp.template

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,24 @@
1010
#define BUILD_VERSION @BUILD_VERSION_MAJOR@,@BUILD_VERSION_MINOR@,@BUILD_VERSION_PATCH@,@BUILD_NUMBER@
1111

1212
#ifndef RESOURCE_COMPILER_INVOKED
13-
#include <ctmacros.hpp>
1413
#include <stdint.h>
1514

15+
#ifdef HAVE_MAT_SHORT_NS
16+
#define MAT_NS_BEGIN MAT
17+
#define MAT_NS_END
18+
#define PAL_NS_BEGIN PAL
19+
#define PAL_NS_END
20+
#else
21+
#define MAT_NS_BEGIN Microsoft { namespace Applications { namespace Events
22+
#define MAT_NS_END }}
23+
#define MAT ::Microsoft::Applications::Events
24+
#define PAL_NS_BEGIN Microsoft { namespace Applications { namespace Events { namespace PlatformAbstraction
25+
#define PAL_NS_END }}}
26+
#define PAL ::Microsoft::Applications::Events::PlatformAbstraction
27+
#endif
28+
29+
#define MAT_v1 ::Microsoft::Applications::Telemetry
30+
1631
namespace MAT_NS_BEGIN {
1732

1833
uint64_t const Version =
@@ -27,3 +42,4 @@ namespace PAL_NS_BEGIN { } PAL_NS_END
2742

2843
#endif // RESOURCE_COMPILER_INVOKED
2944
#endif
45+

0 commit comments

Comments
 (0)