Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.28)

project(msft_proxy4 VERSION 4.0.1 LANGUAGES CXX)
project(msft_proxy4 VERSION 4.0.2 LANGUAGES CXX)
add_library(msft_proxy4 INTERFACE)
set_target_properties(msft_proxy4 PROPERTIES EXPORT_NAME proxy)
add_library(msft_proxy4::proxy ALIAS msft_proxy4)
Expand Down
1 change: 1 addition & 0 deletions docs/spec/msft_lib_proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Starting with 3.0.0, Proxy ships a feature-test macro that encodes the library v
| Version | Value of `__msft_lib_proxy` |
| ------- | --------------------------- |
| 4.0.2 | `202603L` |
| 4.0.1 | `202510L` |
| 4.0.0 | `202508L` |
| 3.4.0 | `202505L` |
Expand Down
2 changes: 1 addition & 1 deletion include/proxy/v4/proxy_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#define PRO4D_DEBUG(...) __VA_ARGS__
#endif // NDEBUG

#define __msft_lib_proxy4 202510L
#define __msft_lib_proxy4 202603L

#define PRO4D_DIRECT_FUNC_IMPL(...) \
noexcept(noexcept(__VA_ARGS__)) \
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'msft_proxy4',
'cpp',
version: '4.0.1',
version: '4.0.2',
license: 'MIT',
license_files: 'LICENSE',
meson_version: '>=1.3',
Expand Down
Loading