diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c35838f79..7cd7fa081 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -108,8 +108,8 @@ $ cd ensmallen # - or - -$ wget http://ensmallen.org/files/ensmallen-2.14.2.tar.gz -$ tar -xvzpf ensmallen-2.14.2.tar.gz +$ wget http://ensmallen.org/files/ensmallen-2.14.3.tar.gz +$ tar -xvzpf ensmallen-2.14.3.tar.gz $ cd ensmallen-latest ``` diff --git a/HISTORY.md b/HISTORY.md index fe884b941..6b421c6ae 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,8 @@ ### ensmallen ?.??.?: "???" ###### ????-??-?? + +### ensmallen 2.14.3: "No Direction Home" +###### 2020-10-31 * Make a few tests more robust ([#228](https://github.com/mlpack/ensmallen/pull/228)). diff --git a/include/ensmallen_bits/ens_version.hpp b/include/ensmallen_bits/ens_version.hpp index b139f4cf0..3729a05c4 100644 --- a/include/ensmallen_bits/ens_version.hpp +++ b/include/ensmallen_bits/ens_version.hpp @@ -16,16 +16,16 @@ // 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 14 -#define ENS_VERSION_PATCH 2 +#define ENS_VERSION_PATCH 3 // 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 "No Direction Home" // Incorporate the date the version was released. -#define ENS_VERSION_YEAR "2020" -#define ENS_VERSION_MONTH "09" -#define ENS_VERSION_DAY "05" +#define ENS_VERSION_YEAR "2020" +#define ENS_VERSION_MONTH "10" +#define ENS_VERSION_DAY "31" namespace ens {