Update version to 1.3.0

This commit is contained in:
Tessil
2024-04-19 20:21:18 +01:00
parent 149ff4590f
commit 188c45569c
2 changed files with 3 additions and 3 deletions

View File

@@ -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)

View File

@@ -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)