From 2c163f065570ba319aed5afd628f19851b846ea7 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Fri, 29 Nov 2024 09:11:41 -0500 Subject: [PATCH] Update and release version 2.22.0. --- CONTRIBUTING.md | 4 ++-- HISTORY.md | 4 ++-- include/ensmallen_bits/ens_version.hpp | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4b36c89b3..e451abe57 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -108,8 +108,8 @@ $ cd ensmallen # - or - -$ wget http://ensmallen.org/files/ensmallen-2.21.1.tar.gz -$ tar -xvzpf ensmallen-2.21.1.tar.gz +$ wget http://ensmallen.org/files/ensmallen-2.22.0.tar.gz +$ tar -xvzpf ensmallen-2.22.0.tar.gz $ cd ensmallen-latest ``` diff --git a/HISTORY.md b/HISTORY.md index 7ce367b4b..9b5345907 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,5 @@ -### ensmallen ?.??.?: "???" -###### ????-??-?? +### ensmallen 2.22.0: "E-Bike Excitement" +###### 2024-11-29 * Update to C++14 standard ([#400](https://github.com/mlpack/ensmallen/pull/400)). diff --git a/include/ensmallen_bits/ens_version.hpp b/include/ensmallen_bits/ens_version.hpp index eb11b4d5e..45412ba48 100644 --- a/include/ensmallen_bits/ens_version.hpp +++ b/include/ensmallen_bits/ens_version.hpp @@ -15,17 +15,17 @@ #define ENS_VERSION_MAJOR 2 // The minor version is two digits so regular numerical comparisons of versions // work right. The first minor version of a release is always 10. -#define ENS_VERSION_MINOR 21 -#define ENS_VERSION_PATCH 1 +#define ENS_VERSION_MINOR 22 +#define ENS_VERSION_PATCH 0 // If this is a release candidate, it will be reflected in the version name // (i.e. the version name will be "RC1", "RC2", etc.). Otherwise the version // name will typically be a seemingly arbitrary set of words that does not // contain the capitalized string "RC". -#define ENS_VERSION_NAME "Bent Antenna" +#define ENS_VERSION_NAME "E-Bike Excitement" // Incorporate the date the version was released. #define ENS_VERSION_YEAR "2024" -#define ENS_VERSION_MONTH "02" -#define ENS_VERSION_DAY "15" +#define ENS_VERSION_MONTH "11" +#define ENS_VERSION_DAY "29" namespace ens {