Skip to content

Commit

Permalink
Release 1.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Feb 21, 2019
1 parent 8c6acbf commit fadd024
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -15,7 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed


## [unreleased] -
## [1.6.7] - 2018-02-21

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -14,7 +14,7 @@ project(protozero)

set(PROTOZERO_VERSION_MAJOR 1)
set(PROTOZERO_VERSION_MINOR 6)
set(PROTOZERO_VERSION_PATCH 6)
set(PROTOZERO_VERSION_PATCH 7)

set(PROTOZERO_VERSION
"${PROTOZERO_VERSION_MAJOR}.${PROTOZERO_VERSION_MINOR}.${PROTOZERO_VERSION_PATCH}")
Expand Down
4 changes: 2 additions & 2 deletions include/protozero/version.hpp
Expand Up @@ -23,12 +23,12 @@ documentation.
#define PROTOZERO_VERSION_MINOR 6

/// The patch number
#define PROTOZERO_VERSION_PATCH 6
#define PROTOZERO_VERSION_PATCH 7

/// The complete version number
#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)

/// Version number as string
#define PROTOZERO_VERSION_STRING "1.6.6"
#define PROTOZERO_VERSION_STRING "1.6.7"

#endif // PROTOZERO_VERSION_HPP

0 comments on commit fadd024

Please sign in to comment.