Revert "Release version 3.11.0: "Sunny Day" (#447)" (#448)

This reverts commit db5cef9823.
This commit is contained in:
Ryan Curtin
2025-12-15 08:58:16 -05:00
committed by GitHub
parent db5cef9823
commit eba232499f
3 changed files with 6 additions and 9 deletions
+2 -2
View File
@@ -109,8 +109,8 @@ $ cd ensmallen
# - or -
$ wget http://ensmallen.org/files/ensmallen-3.11.0.tar.gz
$ tar -xvzpf ensmallen-3.11.0.tar.gz
$ wget http://ensmallen.org/files/ensmallen-3.10.0.tar.gz
$ tar -xvzpf ensmallen-3.10.0.tar.gz
$ cd ensmallen-latest
```
-3
View File
@@ -1,8 +1,5 @@
### ensmallen ?.??.?: "???"
###### ????-??-??
### ensmallen 3.11.0: "Sunny Day"
###### 2025-12-11
* Refactor `GradientDescent` into
`GradientDescentType<UpdatePolicyType, DecayPolicyType>` and
add the `DeltaBarDelta` and `MomentumDeltaBarDelta` optimizers
+4 -4
View File
@@ -15,17 +15,17 @@
#define ENS_VERSION_MAJOR 3
// 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 11
#define ENS_VERSION_MINOR 10
#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 "Sunny Day"
#define ENS_VERSION_NAME "Unexpected Rain"
// Incorporate the date the version was released.
#define ENS_VERSION_YEAR "2025"
#define ENS_VERSION_MONTH "12"
#define ENS_VERSION_DAY "11"
#define ENS_VERSION_MONTH "09"
#define ENS_VERSION_DAY "25"
namespace ens {