Skip to content

Commit

Permalink
Merge pull request #196 from rcurtin/release-2.12.1
Browse files Browse the repository at this point in the history
Release version 2.12.1
  • Loading branch information
rcurtin authored Apr 21, 2020
2 parents de19ddd + 86e5f67 commit fecd7d6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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.12.0.tar.gz
$ tar -xvzpf ensmallen-2.12.0.tar.gz
$ wget http://ensmallen.org/files/ensmallen-2.12.1.tar.gz
$ tar -xvzpf ensmallen-2.12.1.tar.gz
$ cd ensmallen-latest
```

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

### ensmallen 2.12.1: "Stir Crazy"
###### 2020-04-20
* Fix total number of epochs and time estimation for ProgressBar callback
([#181](https://github.com/mlpack/ensmallen/pull/181)).

* Handle SpSubview_col and SpSubview_row in Armadillo 9.870
([#194](https://github.com/mlpack/ensmallen/pull/194)).

* Minor documentation fixes
([#197](https://github.com/mlpack/ensmallen/pull/197)).




### ensmallen 2.12.0: "Stir Crazy"
###### 2020-03-28
* Correction in the formulation of sigma in CMA-ES
Expand Down
2 changes: 1 addition & 1 deletion include/ensmallen_bits/ens_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// 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 12
#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
Expand Down
6 changes: 3 additions & 3 deletions scripts/ensmallen-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fi

# Make sure that the mlpack repository exists.
dest_remote_name=`git remote -v |\
grep "https://github.com/mlpack/ensmallen (fetch)" |\
grep "mlpack/ensmallen (fetch)" |\
head -1 |\
awk -F' ' '{ print $1 }'`;

Expand Down Expand Up @@ -77,11 +77,11 @@ fi
# Check git remotes: we need to make sure we have a fork to push to.
github_user=$1;
remote_name=`git remote -v |\
grep "https://github.com/$github_user/ensmallen (push)" |\
grep "$github_user/ensmallen (push)" |\
head -1 |\
awk -F' ' '{ print $1 }'`;
if [ "a$remote_name" == "a" ]; then
echo "No git remote found for https://github.com/$github_user/ensmallen!";
echo "No git remote found for $github_user/ensmallen!";
echo "Adding remote '$github_user'.";
git remote add $github_user https://github.com/$github_user/ensmallen;
remote_name="$github_user";
Expand Down

0 comments on commit fecd7d6

Please sign in to comment.