Skip to content

Commit

Permalink
Bump minor version instead of patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
ecorm committed Jun 14, 2022
1 parent a7f205c commit 2dd510e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v0.7.1
v0.8.0
======
Refactored WAMP message processing.

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cmake_minimum_required (VERSION 3.12)
include_guard()

project(CppWAMP
VERSION 0.7.1
VERSION 0.8.0
LANGUAGES CXX)

include(ProcessorCount)
Expand Down
4 changes: 2 additions & 2 deletions cppwamp/include/cppwamp/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
#define CPPWAMP_MAJOR_VERSION 0

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

/// Patch version for backwards-compatible bug fixes.
#define CPPWAMP_PATCH_VERSION 1
#define CPPWAMP_PATCH_VERSION 0

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

0 comments on commit 2dd510e

Please sign in to comment.