From d3b6f676fb2bf684b793e6d3a36aeaf981e18b55 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 2 Mar 2021 20:08:11 -0500 Subject: [PATCH] Update and release version 2.16.1. --- CONTRIBUTING.md | 4 ++-- HISTORY.md | 4 ++-- include/ensmallen_bits/ens_version.hpp | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 05ff0db59..cc28f19b1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -108,8 +108,8 @@ $ cd ensmallen # - or - -$ wget http://ensmallen.org/files/ensmallen-2.16.0.tar.gz -$ tar -xvzpf ensmallen-2.16.0.tar.gz +$ wget http://ensmallen.org/files/ensmallen-2.16.1.tar.gz +$ tar -xvzpf ensmallen-2.16.1.tar.gz $ cd ensmallen-latest ``` diff --git a/HISTORY.md b/HISTORY.md index 1899ac21d..12034080b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,5 @@ -### ensmallen ?.??.?: "???" -###### ????-??-?? +### ensmallen 2.16.1: "Severely Dented Can Of Polyurethane" +###### 2021-03-02 * Fix test compilation issue when `ENS_USE_OPENMP` is set ([#255](https://github.com/mlpack/ensmallen/pull/255)). diff --git a/include/ensmallen_bits/ens_version.hpp b/include/ensmallen_bits/ens_version.hpp index 5ec01861f..1fa95e87f 100644 --- a/include/ensmallen_bits/ens_version.hpp +++ b/include/ensmallen_bits/ens_version.hpp @@ -16,7 +16,7 @@ // 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 16 -#define ENS_VERSION_PATCH 0 +#define ENS_VERSION_PATCH 1 // 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 @@ -24,8 +24,8 @@ #define ENS_VERSION_NAME "Severely Dented Can Of Polyurethane" // Incorporate the date the version was released. #define ENS_VERSION_YEAR "2021" -#define ENS_VERSION_MONTH "02" -#define ENS_VERSION_DAY "11" +#define ENS_VERSION_MONTH "03" +#define ENS_VERSION_DAY "02" namespace ens {