Skip to content

Commit b254a62

Browse files
marcomagdybmoffatt
andauthored
Change the version on master branch to have -dev suffix (#107)
Releases will have that suffix removed. Co-authored-by: Bryan Moffatt <bmoffatt@users.noreply.github.com>
1 parent 6328d70 commit b254a62

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
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.6
4+
VERSION 0.0.0
55
LANGUAGES CXX)
66

77
option(ENABLE_LTO "Enables link-time optimization, requires compiler support." ON)
@@ -16,7 +16,7 @@ add_library(${PROJECT_NAME}
1616

1717
set_target_properties(${PROJECT_NAME} PROPERTIES
1818
SOVERSION 0
19-
VERSION ${PROJECT_VERSION})
19+
VERSION ${PROJECT_VERSION}-dev)
2020

2121
target_include_directories(${PROJECT_NAME} PUBLIC
2222
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>

tests/version_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ TEST(VersionTests, get_version_major)
1212
TEST(VersionTests, get_version_minor)
1313
{
1414
auto version = get_version_minor();
15-
ASSERT_GE(version, 1);
15+
ASSERT_GE(version, 0);
1616
}
1717

1818
TEST(VersionTests, get_version_patch)

0 commit comments

Comments
 (0)