Skip to content

Commit

Permalink
incrementing version number to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
syclik committed Dec 20, 2013
1 parent a4bf1f8 commit bbd675d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/docs/stan-models/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<project name="Stan Model PDF" default="pdf" basedir=".">

<property name="version"
value="2.0.1"/>
value="2.1.0"/>

<path id="classpath">
<pathelement location="stan-models.jar"/>
Expand Down
2 changes: 1 addition & 1 deletion src/docs/stan-models/models.sty
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@

\sloppy % no line overruns

\title{{\Huge\bf Stan Example Models} \\[12pt] Version 2.0.1 \\[48pt]}
\title{{\Huge\bf Stan Example Models} \\[12pt] Version 2.1.0 \\[48pt]}
\author{Stan Development Team \vfill \today}
2 changes: 1 addition & 1 deletion src/docs/stan-models/src/MakeModelTex.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static void writeStart(Writer texWriter)
texWriter.write("\\\\[2in]" + EOL);
texWriter.write("{\\Huge\\bf Stan Example Models}" + EOL);
texWriter.write("\\\\[18pt]" + EOL);
texWriter.write("{\\large Version 2.0.1}" + EOL);
texWriter.write("{\\large Version 2.1.0}" + EOL);
texWriter.write("\\\\[12pt]" + EOL);
texWriter.write("{\\large \\today}" + EOL);
texWriter.write("\\\\[1in]" + EOL);
Expand Down
4 changes: 2 additions & 2 deletions src/stan/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ namespace stan {
const std::string MAJOR_VERSION = "2";

/** Minor version number for Stan package. */
const std::string MINOR_VERSION = "0";
const std::string MINOR_VERSION = "1";

/** Patch version for Stan package. */
const std::string PATCH_VERSION = "1";
const std::string PATCH_VERSION = "0";

}

Expand Down

0 comments on commit bbd675d

Please sign in to comment.