Skip to content

Commit 2dd510e

Browse files
committed
Bump minor version instead of patch version
1 parent a7f205c commit 2dd510e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v0.7.1
1+
v0.8.0
22
======
33
Refactored WAMP message processing.
44

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ cmake_minimum_required (VERSION 3.12)
4242
include_guard()
4343

4444
project(CppWAMP
45-
VERSION 0.7.1
45+
VERSION 0.8.0
4646
LANGUAGES CXX)
4747

4848
include(ProcessorCount)

cppwamp/include/cppwamp/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define CPPWAMP_MAJOR_VERSION 0
2121

2222
/// Minor version with functionality added in a backwards-compatible manner.
23-
#define CPPWAMP_MINOR_VERSION 7
23+
#define CPPWAMP_MINOR_VERSION 8
2424

2525
/// Patch version for backwards-compatible bug fixes.
26-
#define CPPWAMP_PATCH_VERSION 1
26+
#define CPPWAMP_PATCH_VERSION 0
2727

2828
/// Integer version number, computed as `(major*10000) + (minor*100) + patch`
2929
#define CPPWAMP_VERSION 701

0 commit comments

Comments
 (0)