Skip to content

Commit

Permalink
set version to 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
maverickg committed Jun 23, 2014
1 parent 3491abf commit 5dd1fe5
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
4 changes: 2 additions & 2 deletions rstan/rstan/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: rstan
Type: Package
Title: RStan: R interface to Stan
Version: 2.2.0
Date: 2014-02-9
Version: 2.3.0
Date: 2014-06-23
Author: Jiqiang Guo <guojq28@gmail.com>,
Michael Betancourt <betanalpha@gmail.com>,
Marcus Brubaker <mbrubake@cs.toronto.edu>,
Expand Down
8 changes: 4 additions & 4 deletions rstan/rstan/inst/CITATION
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
citHeader("To cite Stan in publications use:")

citEntry(entry = "Misc",
title = "Stan: A C++ Library for Probability and Sampling, Version 2.2.0",
title = "Stan: A C++ Library for Probability and Sampling, Version 2.3.0",
author = person(given = "Stan Development Team"),
year = "2013",
url = "http://mc-stan.org/",
textVersion =
paste("Stan Development Team (2013).",
title = "Stan: A C++ Library for Probability and Sampling, Version 2.2.0.",
title = "Stan: A C++ Library for Probability and Sampling, Version 2.3.0.",
"URL http://mc-stan.org/.")
)

citEntry(entry = "Manual",
title = "Stan Modeling Language User's Guide and Reference Manual, Version 2.2.0",
title = "Stan Modeling Language User's Guide and Reference Manual, Version 2.3.0",
author = person(given = "Stan Development Team"),
year = "2013",
url = "http://mc-stan.org/",
textVersion =
paste("Stan Development Team (2013).",
"Stan Modeling Language User's Guide and Reference Manual, Version 2.2.0.",
"Stan Modeling Language User's Guide and Reference Manual, Version 2.3.0.",
"URL http://mc-stan.org/.")
)

Expand Down
10 changes: 10 additions & 0 deletions rstan/rstan/inst/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Mon Jun 23 2014 (2.3.0)
1. changes
* updates for Stan 2.3.0
* use \n instead of \r for printing sampling progress
* default to 2 digits after decimal place for print method for stanfit

Wed Apr 15 2014
1. Bug fixes
* issue 62

Wed Feb 26 2014
1. Bug fixes
* issue 51
Expand Down
2 changes: 1 addition & 1 deletion rstan/rstan/man/rstan.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
\tabular{ll}{
Package: \tab rstan\cr
Type: \tab Package\cr
Version: \tab 2.2.0\cr
Version: \tab 2.3.0\cr
Date: \tab \Sexpr[eval=TRUE,results=rd,stage=build]{date()}\cr
License: \tab GPL-3 \cr
}
Expand Down
4 changes: 2 additions & 2 deletions rstan/rstan/vignettes/rstan.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ @manual{StanManual:2013
title = {Stan Modeling Language: User's Guide and Reference Manual},
author = "{The Stan Development Team}",
year = {2013},
note = {Stan Version 2.2.0 (http://mc-stan.org)},
note = {Stan Version 2.3.0 (http://mc-stan.org)},
url = {http://mc-stan.org}
}

Expand All @@ -18,7 +18,7 @@ @misc{stan-software:2013
author = {{The Stan Development Team}},
year = 2013,
title = {Stan: A {C++} {L}ibrary for {P}robability
and {S}ampling, Version 2.2.0},
and {S}ampling, Version 2.3.0},
url = {http://mc-stan.org/},
note = {http://mc-stan.org/}
}
Expand Down
6 changes: 3 additions & 3 deletions rstan/update_ver.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash
# OLD_VER=[[:digit:]]\\+\\.[[:digit:]]\\+\\.[[:digit:]]

OLD_VER=2.1.1
NEW_VER=2.2.0
SED=gnused
OLD_VER=2.2.0
NEW_VER=2.3.0
SED=sed

${SED} -i "s/${OLD_VER}/${NEW_VER}/g" ./rstan/DESCRIPTION ./rstan/inst/CITATION ./rstan/man/rstan.Rd ./rstan/vignettes/rstan.bib

Expand Down

0 comments on commit 5dd1fe5

Please # to comment.