From 188c45569cc2a5dd768077c193830b51d33a5020 Mon Sep 17 00:00:00 2001 From: Tessil Date: Fri, 19 Apr 2024 20:21:18 +0100 Subject: [PATCH] Update version to 1.3.0 --- CMakeLists.txt | 2 +- include/tsl/robin_growth_policy.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c067a7b..3cb3151 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.3) -project(tsl-robin-map VERSION 1.2.2 LANGUAGES CXX) +project(tsl-robin-map VERSION 1.3.0 LANGUAGES CXX) include(GNUInstallDirs) diff --git a/include/tsl/robin_growth_policy.h b/include/tsl/robin_growth_policy.h index 8a3ac3a..b100bfc 100644 --- a/include/tsl/robin_growth_policy.h +++ b/include/tsl/robin_growth_policy.h @@ -40,10 +40,10 @@ #define TSL_RH_VERSION_MAJOR 1 // A change of the minor version indicates the addition of a feature without // impact on the API/ABI -#define TSL_RH_VERSION_MINOR 2 +#define TSL_RH_VERSION_MINOR 3 // A change of the patch version indicates a bugfix without additional // functionality -#define TSL_RH_VERSION_PATCH 2 +#define TSL_RH_VERSION_PATCH 0 #ifdef TSL_DEBUG #define tsl_rh_assert(expr) assert(expr)