You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor project structure: rename repository to slick-net, update CMake configuration, add vcpkg integration, and enhance documentation; include GitHub Actions for release automation and update license years
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16-7Lines changed: 16 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,13 @@
1
-
# [1.2.1] - 2025-01-25
1
+
# [v1.2.2] - 2026-01-12
2
+
- Upgraded to slick-queue v1.2.2
3
+
- Renamed repository from slick_net to slick-net (hyphenated naming follows recommended convention)
4
+
- Changed export name from slick_net, slick::slick_net to slick::net
5
+
- Refactored repository name in CMake configuration files
6
+
- Updated documentation and build references to use new repository name
7
+
- Added release GitHub Workflow
8
+
- Updated license copyright years
9
+
10
+
# [v1.2.1] - 2025-01-25
2
11
3
12
## New Features
4
13
-**vcpkg Package Manager Support**: Full integration with vcpkg for easy installation and dependency management
@@ -28,7 +37,7 @@
28
37
- Updated GitHub Actions CI to use GCC 14 on Linux for full C++20 coroutine support
29
38
- Removed GCC 13 compatibility workarounds for awaitable HTTP tests
30
39
31
-
# [1.2.0] - 2025-01-18
40
+
# [v1.2.0] - 2025-01-18
32
41
33
42
## New Features
34
43
-**C++20 Coroutine Awaitable HTTP API**: Added modern async/await interface for all HTTP methods
@@ -42,27 +51,27 @@
42
51
- Supports both HTTP and HTTPS protocols
43
52
-**Note**: GCC 13 has a known compiler bug with coroutine lambdas. Awaitable tests are disabled on GCC 13. Use GCC 14+ or Clang for full awaitable support.
44
53
45
-
# [1.1.2] - 2025-11-13
54
+
# [v1.1.2] - 2025-11-13
46
55
- Remove unnecessary slick_logger from slick_net link dependencies
47
56
- Update CMakeLists to link slick_logger with example executables
48
57
49
-
# [1.1.1] - 2025-10-22
58
+
# [v1.1.1] - 2025-10-22
50
59
- Fix slick_queue header include
51
60
- Fix GitHub CI builds
52
61
- Change Version to 3 digits
53
62
54
-
# [1.1.0.1] - 2025-10-21
63
+
# [v1.1.0.1] - 2025-10-21
55
64
56
65
- Update slick_queue to v1.1.0.2
57
66
- Change namespace from slick_net to slick::net
58
67
- Change include folder structure from include/slick_net to include/slick/net
59
68
60
-
# [1.1.0.0] - 2025-10-19
69
+
# [v1.1.0.0] - 2025-10-19
61
70
62
71
- Added plain WebSocket (ws://) and plain Http (http://) protocol support
63
72
- Added Comprehensive test coverage for plain HTTP (non-SSL) client
A high-performance C++ HTTP/WebSocket client library built on Boost.Beast with full SSL/TLS support. Designed for asynchronous, non-blocking HTTP/WebSocket communication in modern C++ applications.
9
9
@@ -33,24 +33,24 @@ A high-performance C++ HTTP/WebSocket client library built on Boost.Beast with f
33
33
34
34
### CMake Integration
35
35
36
-
Add slick_net as a subdirectory in your CMake project:
36
+
Add slick-net as a subdirectory in your CMake project:
0 commit comments