From b672017bc2748b2962126859662b658aa9f9bba6 Mon Sep 17 00:00:00 2001 From: Sean Talts Date: Mon, 11 Dec 2017 13:08:57 -0500 Subject: [PATCH] release/v2.17.1: updating version numbers. --- .github/ISSUE_TEMPLATE.md | 2 +- RELEASE-NOTES.txt | 5 +++++ src/docs/stan-reference/language.tex | 2 +- src/docs/stan-reference/process.tex | 2 +- src/docs/stan-reference/stan-reference.tex | 2 +- src/doxygen/doxygen.cfg | 2 +- src/stan/version.hpp | 2 +- src/test/unit/version_test.cpp | 4 ++-- 8 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 93f690ee6ef..8919f804b52 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -24,4 +24,4 @@ Describe what you expect the output to be. Knowing the correct behavior is also Provide any additional information here. #### Current Version: -v2.17.0 +v2.17.1 diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 80f9016d131..0b600cfaefc 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -5,6 +5,11 @@ Note: these are the release notes for the stan-dev/stan repository. Further changes may arise at the interface level (stan-dev/{rstan, pystan, cmdstan}) and math library level (stan-dev/math). +v2.17.1 (11 December 2017) +====================================================================== +This is a bugfix release fixing a performance regression in the math repo. See +https://github.com/stan-dev/math/issues/667 for more details. + v2.17.0 (05 September 2017) ====================================================================== diff --git a/src/docs/stan-reference/language.tex b/src/docs/stan-reference/language.tex index 9e47fd36507..c699707b19a 100644 --- a/src/docs/stan-reference/language.tex +++ b/src/docs/stan-reference/language.tex @@ -2781,7 +2781,7 @@ \section{Assignment Statement}\label{assignment-statement.section} and assigns it to the (indexed) variable on the left-hand side. An example of a simple assignment is as follows.% % -\footnote{In versions of Stan before 2.17.0, the operator \code{<-} was +\footnote{In versions of Stan before 2.17.1, the operator \code{<-} was used for assignment rather than using the equal sign \code{=}. The old operator \code{<-} is now deprecated and will print a warning. In the future, it will be removed.} diff --git a/src/docs/stan-reference/process.tex b/src/docs/stan-reference/process.tex index 91ccfffbd4e..866e7b51bf7 100644 --- a/src/docs/stan-reference/process.tex +++ b/src/docs/stan-reference/process.tex @@ -687,7 +687,7 @@ \section{Qualified Personnel} software systems that are still in production. Institutions at which the members of the Stan development team hold -appointments as of Stan release 2.17.0 include Columbia University, +appointments as of Stan release 2.17.1 include Columbia University, Adobe Creative Technologies Lab, University of Warwick, University of Toronto (Scarborough), Dartmouth College, University of Washington, Lucidworks, CNRS (Paris), St. George's, University of London, diff --git a/src/docs/stan-reference/stan-reference.tex b/src/docs/stan-reference/stan-reference.tex index ad11f40c127..dd94c4b1c03 100644 --- a/src/docs/stan-reference/stan-reference.tex +++ b/src/docs/stan-reference/stan-reference.tex @@ -8,7 +8,7 @@ \pagestyle{plain} -\newcommand{\stanversion}{2.17.0} +\newcommand{\stanversion}{2.17.1} \frontmatter \include{title} diff --git a/src/doxygen/doxygen.cfg b/src/doxygen/doxygen.cfg index 3389012f5d7..290cebb0768 100644 --- a/src/doxygen/doxygen.cfg +++ b/src/doxygen/doxygen.cfg @@ -38,7 +38,7 @@ PROJECT_NAME = "Stan" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.17.0 +PROJECT_NUMBER = 2.17.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/stan/version.hpp b/src/stan/version.hpp index ddb471f14be..ba275e71158 100644 --- a/src/stan/version.hpp +++ b/src/stan/version.hpp @@ -13,7 +13,7 @@ #define STAN_MAJOR 2 #define STAN_MINOR 17 -#define STAN_PATCH 0 +#define STAN_PATCH 1 namespace stan { diff --git a/src/test/unit/version_test.cpp b/src/test/unit/version_test.cpp index 725bbb78b5e..e5bb4a5169f 100644 --- a/src/test/unit/version_test.cpp +++ b/src/test/unit/version_test.cpp @@ -4,11 +4,11 @@ TEST(Stan, macro) { EXPECT_EQ(2, STAN_MAJOR); EXPECT_EQ(17, STAN_MINOR); - EXPECT_EQ(0, STAN_PATCH); + EXPECT_EQ(1, STAN_PATCH); } TEST(Stan, version) { EXPECT_EQ("2", stan::MAJOR_VERSION); EXPECT_EQ("17", stan::MINOR_VERSION); - EXPECT_EQ("0", stan::PATCH_VERSION); + EXPECT_EQ("1", stan::PATCH_VERSION); }