Skip to content

Commit

Permalink
prepare CRAN submission
Browse files Browse the repository at this point in the history
  • Loading branch information
dleutnant committed Mar 18, 2019
1 parent 869b842 commit 824f896
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Description: Functions to connect the widely used Storm Water Management Model (
access to simulation results, i.e. SWMM's binary '.out'-files. High performance is achieved
with help of Rcpp. Additionally, reading SWMM's '.inp' and '.rpt' files is supported to
glance model structures and to get direct access to simulation summaries.
Version: 0.8.1.9000
Version: 0.9.0
Authors@R: c(
person("Dominik", "Leutnant", email = "leutnant@fh-muenster.de",
role = c("aut", "cre"), comment = c(ORCID = "0000-0003-3293-2315")),
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# swmmr 0.8.1.9000
# swmmr 0.9.0

## Breaking changes

* Mac OS users only: The default path for swmm exec is expected to be "/usr/local/bin" or "/usr/bin"
* Mac OS and Linux users only: The default path for swmm exec is expected to be "/usr/local/bin" or "/usr/bin"

## New features

Expand Down
4 changes: 2 additions & 2 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ stop_on_bad_index <- function(index, choices) {

# final check
if (!file.exists(full_name)) {
warning("SWMM executable not found.")
message("SWMM executable not found.")
full_name <- NULL
}

Expand All @@ -98,7 +98,7 @@ stop_on_bad_index <- function(index, choices) {
full_name <- full_name[exec_found][1]
} else {
# otherwise raise warning
warning("SWMM executable not found.")
message("SWMM executable not found.")
full_name <- NULL
}
return(full_name)
Expand Down
8 changes: 4 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Package Update

This is a package update to swmmr 0.8.1.
This is a package update to swmmr 0.9.0.

## Test environments
* local OS X install, R 3.4.3
* r-hub x86_64-w64-mingw32 (64-bit), R 3.4.2
* r-hub x86_64-pc-linux-gnu (64-bit), R.3.4.2
* local OS X install, R 3.5.2
* r-hub x86_64-w64-mingw32 (64-bit), R 3.5.3
* r-hub x86_64-pc-linux-gnu (64-bit), R.3.5.3

## local R CMD check results

Expand Down

0 comments on commit 824f896

Please sign in to comment.