From 11fe37c0699cfc3242e9d6c8da13e479614c02d0 Mon Sep 17 00:00:00 2001 From: Bryan Moffatt Date: Sat, 15 Oct 2022 20:13:23 +0100 Subject: [PATCH] v0.2.8 --- CMakeLists.txt | 4 ++-- tests/version_tests.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76702cb..db8e4c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.9) set(CMAKE_CXX_STANDARD 11) project(aws-lambda-runtime - VERSION 0.0.0 + VERSION 0.2.8 LANGUAGES CXX) option(ENABLE_LTO "Enables link-time optimization, requires compiler support." OFF) @@ -16,7 +16,7 @@ add_library(${PROJECT_NAME} set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION 0 - VERSION ${PROJECT_VERSION}-dev) + VERSION ${PROJECT_VERSION}) target_include_directories(${PROJECT_NAME} PUBLIC $ diff --git a/tests/version_tests.cpp b/tests/version_tests.cpp index 070b6dd..d450bb7 100644 --- a/tests/version_tests.cpp +++ b/tests/version_tests.cpp @@ -12,11 +12,11 @@ TEST(VersionTests, get_version_major) TEST(VersionTests, get_version_minor) { auto version = get_version_minor(); - ASSERT_GE(version, 0); + ASSERT_GE(version, 2); } TEST(VersionTests, get_version_patch) { auto version = get_version_patch(); - ASSERT_GE(version, 0); + ASSERT_GE(version, 8); }