We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc747c commit d07a8e8Copy full SHA for d07a8e8
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+v0.11.1
2
+=======
3
+Updated UML diagrams.
4
+
5
6
v0.11.0
7
=======
8
Polymorphic codecs and transports.
CMakeLists.txt
@@ -38,7 +38,7 @@ cmake_minimum_required (VERSION 3.12)
38
include_guard()
39
40
project(CppWAMP
41
- VERSION 0.11.0
+ VERSION 0.11.1
42
LANGUAGES CXX)
43
44
include(ProcessorCount)
cppwamp/include/cppwamp/version.hpp
@@ -22,7 +22,7 @@
22
#define CPPWAMP_MINOR_VERSION 11
23
24
/// Patch version for backwards-compatible bug fixes.
25
-#define CPPWAMP_PATCH_VERSION 0
+#define CPPWAMP_PATCH_VERSION 1
26
27
/// Integer version number, computed as `(major*10000) + (minor*100) + patch`
28
#define CPPWAMP_VERSION \
0 commit comments