Skip to content

Commit 6167f85

Browse files
Upgrade ensmallen to 2.15.1 (#40)
Co-authored-by: coatless <[email protected]>
1 parent 6ef4130 commit 6167f85

File tree

5 files changed

+27
-8
lines changed

5 files changed

+27
-8
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2020-11-06 James Balamuta <[email protected]>
2+
3+
* DESCRIPTION (Version): Release 2.15.1
4+
* NEWS.md: Update for Ensmallen release 2.15.1
5+
* inst/include/ensmallen_bits: Upgraded to Ensmallen 2.15.1
6+
* inst/include/ensmallen.hpp: ditto
7+
18
2020-11-03 James Balamuta <[email protected]>
29

310
* DESCRIPTION (Version): Release 2.15.0

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: RcppEnsmallen
22
Title: Header-Only C++ Mathematical Optimization Library for 'Armadillo'
3-
Version: 0.2.15.0.1
3+
Version: 0.2.15.1.1
44
Authors@R: c(
55
person("James Joseph", "Balamuta", email = "[email protected]",
66
role = c("aut", "cre", "cph"),

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# RcppEnsmallen 0.2.15.1.1
2+
3+
- Upgraded to ensmallen 2.15.1: "Why Can't I Manage To Grow Any Plants?" (2020-11-05)
4+
- Fix include order to ensure traits is loaded before reports
5+
([#239](https://github.com/mlpack/ensmallen/pull/239)).
6+
17
# RcppEnsmallen 0.2.15.0.1
28

39
- Upgraded to ensmallen 2.15.0: "No Direction Home" (2020-11-03)

inst/include/ensmallen_bits/ens_version.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
// The minor version is two digits so regular numerical comparisons of versions
1717
// work right. The first minor version of a release is always 10.
1818
#define ENS_VERSION_MINOR 15
19-
#define ENS_VERSION_PATCH 0
19+
#define ENS_VERSION_PATCH 1
2020
// If this is a release candidate, it will be reflected in the version name
2121
// (i.e. the version name will be "RC1", "RC2", etc.). Otherwise the version
2222
// name will typically be a seemingly arbitrary set of words that does not
2323
// contain the capitalized string "RC".
24-
#define ENS_VERSION_NAME "Why Can't I Manage To Grow Any Plants?"
24+
#define ENS_VERSION_NAME "Why Can't I Manage To Grow Any Plants?"
2525
// Incorporate the date the version was released.
26-
#define ENS_VERSION_YEAR "2020"
26+
#define ENS_VERSION_YEAR "2020"
2727
#define ENS_VERSION_MONTH "11"
28-
#define ENS_VERSION_DAY "03"
28+
#define ENS_VERSION_DAY "05"
2929

3030
namespace ens {
3131

@@ -45,7 +45,7 @@ struct version
4545

4646
return ss.str();
4747
}
48-
48+
4949
static inline std::string date()
5050
{
5151
std::stringstream ss;

tools/HISTORYold.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
### ensmallen ?.??.?: "???"
2-
###### ????-??-??
1+
### ensmallen 2.15.1: "Why Can't I Manage To Grow Any Plants?"
2+
###### 2020-11-05
3+
4+
* Fix include order to ensure traits is loaded before reports
5+
([#239](https://github.com/mlpack/ensmallen/pull/239)).
6+
7+
### ensmallen 2.15.0: "Why Can't I Manage To Grow Any Plants?"
8+
###### 2020-11-01
39
* Make a few tests more robust
410
([#228](https://github.com/mlpack/ensmallen/pull/228)).
511

0 commit comments

Comments
 (0)