Skip to content

Commit

Permalink
Bump the version to 0.2.5
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Magdy <mmagdy@gmail.com>
  • Loading branch information
marcomagdy committed Dec 3, 2019
1 parent a9e34da commit 1d1373d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.9)
set(CMAKE_CXX_STANDARD 11)
project(aws-lambda-runtime
VERSION 0.2.4
VERSION 0.2.5
LANGUAGES CXX)

option(ENABLE_TESTS "Enables building the test project, requires AWS C++ SDK." OFF)
Expand Down
6 changes: 3 additions & 3 deletions src/version.cpp.in
Expand Up @@ -22,19 +22,19 @@ namespace lambda_runtime {
AWS_LAMBDA_RUNTIME_API
unsigned get_version_major()
{
return @PROJECT_VERSION_MAJOR@;
return @PROJECT_VERSION_MAJOR@; // NOLINT
}

AWS_LAMBDA_RUNTIME_API
unsigned get_version_minor()
{
return @PROJECT_VERSION_MINOR@;
return @PROJECT_VERSION_MINOR@; // NOLINT
}

AWS_LAMBDA_RUNTIME_API
unsigned get_version_patch()
{
return @PROJECT_VERSION_PATCH@;
return @PROJECT_VERSION_PATCH@; // NOLINT
}
/* clang-format on */

Expand Down

0 comments on commit 1d1373d

Please sign in to comment.