Skip to content

Commit 5ce3cd3

Browse files
authored
Merge pull request #64 from basiliscos/v0.33-dev
V0.33 dev
2 parents a5ff8c9 + a4570bf commit 5ce3cd3

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

CMakeLists.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)
22

33
cmake_policy(SET CMP0074 NEW)
44

5-
set(ROTOR_VERSION "0.32")
5+
set(ROTOR_VERSION "0.33")
66
project (rotor LANGUAGES CXX VERSION ${ROTOR_VERSION})
77
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/")
88

@@ -182,7 +182,12 @@ if (BUILD_BOOST_ASIO)
182182
)
183183
endif()
184184
target_compile_definitions(rotor_asio PRIVATE ${ROTOR_ASIO_PRIVATE_FLAGS})
185-
target_link_libraries(rotor_asio PUBLIC rotor Threads::Threads)
185+
target_link_libraries(rotor_asio
186+
PUBLIC
187+
rotor
188+
Threads::Threads
189+
$<$<PLATFORM_ID:Windows>:ws2_32>
190+
)
186191
add_library(rotor::asio ALIAS rotor_asio)
187192

188193
install(

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ project.
6666

6767
## Changelog
6868

69+
### 0.33 (26-Jan-2025)
70+
- [cmake, bugfix, win32] add `ws2_32` lib for rotor_asion win32 build
71+
6972
### 0.32 (18-Dec-2024)
7073
- [feature] added `make_routed_message()` free function.
7174
The function is used for "synchronized" message post-processing, i.e. once a

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def configure(self):
5252
pass
5353

5454
def requirements(self):
55-
self.requires("boost/1.83.0", transitive_headers=True)
55+
self.requires("boost/1.84.0", transitive_headers=True)
5656
if self.options.enable_ev:
5757
self.requires("libev/4.33")
5858
if self.options.enable_fltk:

docs/Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
[reliable]: https://en.wikipedia.org/wiki/Reliability_(computer_networking) "reliable"
55
[request-response]: https://en.wikipedia.org/wiki/Request%E2%80%93response
66

7+
### 0.33 (26-Jan-2025)
8+
- [cmake, bugfix, win32] add `ws2_32` lib for rotor_asion win32 build
9+
710
### 0.32 (18-Dec-2024)
811
- [feature] added `make_routed_message()` free function.
912
The function is used for "synchronized" message post-processing, i.e. once a

0 commit comments

Comments
 (0)