Skip to content

Commit

Permalink
build for 0.8.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
braunm committed Oct 7, 2021
1 parent 402745e commit 385f0f7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: trustOptim
Type: Package
Title: Trust Region Optimization for Nonlinear Functions with Sparse Hessians
Version: 0.8.7.2
Date: 2021-09-21
Version: 0.8.7.3
Date: 2021-10-07
Authors@R: person(given="Michael", family="Braun", email="[email protected]", role=c("aut","cre","cph"), comment=c(ORCID="0000-0003-4774-2119"))
Maintainer: Michael Braun <[email protected]>
URL: https://braunm.github.io/trustOptim/, https://github.com/braunm/trustOptim/
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

# trustOptim 0.8.7.3

- Disabled tests on CRAN. Checks depending on numerical precision are not 100% guaranteed to pass on all CRAN platforms.
- Updated CITATION file to point to the DOI link to JStatSoft article.

# trustOptim 0.8.7.2

- Built a pkgdown site.
Expand Down
4 changes: 2 additions & 2 deletions inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ citEntry(entry = "Article",
volume = "60",
number = "4",
pages = "1--16",
url = "https://www.jstatsoft.org/v60/i04/",
url = "https://doi.org/10.18637/jss.v060.i04",

textVersion =
paste("Michael Braun (2014).",
"trustOptim: An R Package for Trust Region Optimization with Sparse Hessians.",
"Journal of Statistical Software, 60(4), 1-16.",
"URL http://www.jstatsoft.org/v60/i04/.")
"URL https://doi.org/10.18637/jss.v060.i04.")
)
2 changes: 1 addition & 1 deletion tests/testthat/test_binary.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
context("Tests using binary dataset")

test_that("Binary", {
skip_on_cran()
testthat::skip_on_cran()
data(binary)
N <- length(binary$Y)
k <- NROW(binary$X)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test_rosenbrock.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
context("Tests using Rosenbrock function")

test_that("Rosenbrock", {

testthat::skip_on_cran()
f.rosen <- function(V) {

N <- length(V)/2
Expand Down

0 comments on commit 385f0f7

Please sign in to comment.