Skip to content

Commit 1d1373d

Browse files
committed
Bump the version to 0.2.5
Signed-off-by: Marco Magdy <[email protected]>
1 parent a9e34da commit 1d1373d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.9)
22
set(CMAKE_CXX_STANDARD 11)
33
project(aws-lambda-runtime
4-
VERSION 0.2.4
4+
VERSION 0.2.5
55
LANGUAGES CXX)
66

77
option(ENABLE_TESTS "Enables building the test project, requires AWS C++ SDK." OFF)

src/version.cpp.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ namespace lambda_runtime {
2222
AWS_LAMBDA_RUNTIME_API
2323
unsigned get_version_major()
2424
{
25-
return @PROJECT_VERSION_MAJOR@;
25+
return @PROJECT_VERSION_MAJOR@; // NOLINT
2626
}
2727

2828
AWS_LAMBDA_RUNTIME_API
2929
unsigned get_version_minor()
3030
{
31-
return @PROJECT_VERSION_MINOR@;
31+
return @PROJECT_VERSION_MINOR@; // NOLINT
3232
}
3333

3434
AWS_LAMBDA_RUNTIME_API
3535
unsigned get_version_patch()
3636
{
37-
return @PROJECT_VERSION_PATCH@;
37+
return @PROJECT_VERSION_PATCH@; // NOLINT
3838
}
3939
/* clang-format on */
4040

0 commit comments

Comments
 (0)