Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 2.22.1: "E-Bike Excitement" #415

Merged
merged 2 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.22.0.tar.gz
$ tar -xvzpf ensmallen-2.22.0.tar.gz
$ wget http://ensmallen.org/files/ensmallen-2.22.1.tar.gz
$ tar -xvzpf ensmallen-2.22.1.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.22.1: "E-Bike Excitement"
###### 2024-12-02
* Remove unused variables to fix compiler warnings
([#413](https://github.com/mlpack/ensmallen/pull/413)).

Expand Down
6 changes: 3 additions & 3 deletions include/ensmallen_bits/ens_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 22
#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
// contain the capitalized string "RC".
#define ENS_VERSION_NAME "E-Bike Excitement"
// Incorporate the date the version was released.
#define ENS_VERSION_YEAR "2024"
#define ENS_VERSION_MONTH "11"
#define ENS_VERSION_DAY "29"
#define ENS_VERSION_MONTH "12"
#define ENS_VERSION_DAY "02"

namespace ens {

Expand Down
Loading