Skip to content

Commit

Permalink
Merge pull request #343 from zoq/release-2.19.0
Browse files Browse the repository at this point in the history
Release version 2.19.0: "Eight Ball Deluxe"
  • Loading branch information
zoq authored Apr 9, 2022
2 parents 99147a8 + a30c1a9 commit f974ea0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ $ cd ensmallen

# - or -

$ wget http://ensmallen.org/files/ensmallen-2.18.2.tar.gz
$ tar -xvzpf ensmallen-2.18.2.tar.gz
$ wget http://ensmallen.org/files/ensmallen-2.19.0.tar.gz
$ tar -xvzpf ensmallen-2.19.0.tar.gz
$ cd ensmallen-latest
```

Expand Down
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
### ensmallen ?.??.?: "???"
###### ????-??-??

### ensmallen 2.19.0: "Eight Ball Deluxe"
###### 2022-04-06
* Added DemonSGD and DemonAdam optimizers
([#211](https://github.com/mlpack/ensmallen/pull/211)).

Expand Down
10 changes: 5 additions & 5 deletions include/ensmallen_bits/ens_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 18
#define ENS_VERSION_PATCH 2
#define ENS_VERSION_MINOR 19
#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 "Fairmount Bagel"
#define ENS_VERSION_NAME "Eight Ball Deluxe"
// Incorporate the date the version was released.
#define ENS_VERSION_YEAR "2022"
#define ENS_VERSION_MONTH "02"
#define ENS_VERSION_DAY "13"
#define ENS_VERSION_MONTH "04"
#define ENS_VERSION_DAY "06"

namespace ens {

Expand Down

0 comments on commit f974ea0

Please sign in to comment.