From b576b928729f05964972fe86ee433f3bbc1bfaf7 Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Sun, 22 Dec 2024 19:59:57 -0800 Subject: [PATCH] Release 0.8.2 --- CHANGELOG | 5 +++++ CMakeLists.txt | 2 +- etl/include/etl.hpp | 4 ++-- etl/tests/version_test.cpp | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 406e0a3..4a6405b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.2] - 2024-12-22 + +### Changed + +- Forgot to update the version number in CMakelists.txt.... Stupid. ## [0.8.1] - 2024-12-22 diff --git a/CMakeLists.txt b/CMakeLists.txt index 19231f4..67090d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.18) # project( etl - VERSION 0.8.1 + VERSION 0.8.2 DESCRIPTION "C++ Extra Template Library" HOMEPAGE_URL "https://github.com/thebashpotato/extra-template-library" LANGUAGES CXX) diff --git a/etl/include/etl.hpp b/etl/include/etl.hpp index 7933256..2384e0b 100644 --- a/etl/include/etl.hpp +++ b/etl/include/etl.hpp @@ -42,9 +42,9 @@ namespace etl constexpr auto VERSION_MAJOR = 0; constexpr auto VERSION_MINOR = 8; -constexpr auto VERSION_PATCH = 1; +constexpr auto VERSION_PATCH = 2; constexpr auto VERSION = (VERSION_MAJOR * 10000) + (VERSION_MINOR * 100) + VERSION_PATCH; -constexpr std::string_view VERSION_STRING = "0.8.1"; +constexpr std::string_view VERSION_STRING = "0.8.2"; /// @brief Ditch those old C style for loops and iterate over your enums safely with ranged for loops. /// diff --git a/etl/tests/version_test.cpp b/etl/tests/version_test.cpp index 0ff2afa..29ea264 100644 --- a/etl/tests/version_test.cpp +++ b/etl/tests/version_test.cpp @@ -3,12 +3,12 @@ TEST(EtlVersionTests, EnsureVersionStringIsCorrect) { - ASSERT_EQ(etl::VERSION_STRING, "0.8.1"); + ASSERT_EQ(etl::VERSION_STRING, "0.8.2"); } TEST(EtlVersionTests, EnsureVersionIntIsCorrect) { ASSERT_EQ(etl::VERSION_MAJOR, 0); ASSERT_EQ(etl::VERSION_MINOR, 8); - ASSERT_EQ(etl::VERSION_PATCH, 1); + ASSERT_EQ(etl::VERSION_PATCH, 2); }