-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version and description for resubmission.
- Loading branch information
1 parent
1ca82c8
commit d285b7f
Showing
3 changed files
with
14 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
Package: mize | ||
Type: Package | ||
Title: Unconstrained Numerical Optimization Algorithms | ||
Version: 0.1.0 | ||
Version: 0.1.1 | ||
Authors@R: person("James", "Melville", email = "[email protected]", | ||
role = c("aut", "cre")) | ||
Description: Optimization algorithms implemented in R, including | ||
conjugate gradient (CG), Broyden-Fletcher-Goldfarb-Shanno (BFGS) and the | ||
limited memory BFGS (L-BFGS) methods. | ||
limited memory BFGS (L-BFGS) methods. Most internal parameters can be set | ||
through the call interface. The solvers hold up quite well for | ||
higher-dimensional problems. | ||
License: BSD 2-clause License + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# mize 0.1.0 | ||
# mize 0.1.1 | ||
|
||
Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
## Release Summary | ||
|
||
This is the initial CRAN submission of mize. | ||
This is a resubmission to deal with the following issues: | ||
|
||
* The Description field in the DESCRIPTION file has been updated to better | ||
distinguish it from existing packages. | ||
|
||
* In a vignette, a link to a URL has been modified to fix a message about it | ||
being possibly invalid. | ||
|
||
## Test environments | ||
|
||
* ubuntu 12.04 (on travis-ci), R 3.4.0 | ||
* local Antegros Linux, R 3.4.1 | ||
* local Windows 10 build, R 3.4.1 | ||
* win-builder (devel) | ||
|
||
|
@@ -17,7 +24,7 @@ There was 1 NOTE: | |
* checking CRAN incoming feasibility ... NOTE | ||
Maintainer: 'James Melville <[email protected]>' | ||
|
||
This is the first submission of the package and my first submission to CRAN. | ||
This is the first version of the package and my first submission to CRAN. | ||
|
||
There was a message about possibly mis-spelled words in DESCRIPTION: | ||
|
||
|
@@ -28,19 +35,6 @@ There was a message about possibly mis-spelled words in DESCRIPTION: | |
|
||
Those words are spelled correctly. | ||
|
||
There was a message about an invalid URL: | ||
|
||
Found the following (possibly) invalid URLs: | ||
URL: http://www.cs.umd.edu/users/oleary/software/ | ||
From: inst/doc/mize.html | ||
Status: Error | ||
Message: libcurl error code 35: | ||
Unknown SSL protocol error in connection to www.cs.umd.edu:443 | ||
|
||
The URL resolves correctly in a web browser and via | ||
curl::curl(url = "http://www.cs.umd.edu/users/oleary/software/") in R 3.4.1 | ||
on my Windows 10 test environment. | ||
|
||
## Downstream dependencies | ||
|
||
None. |