Skip to content

Commit

Permalink
Prep CRAN update
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Solymos <psolymos@gmail.com>
  • Loading branch information
psolymos committed Jun 27, 2023
1 parent e418466 commit 50864c5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: rconfig
Type: Package
Title: Manage R Configuration at the Command Line
Version: 0.2.1
Date: 2023-06-01
Version: 0.3.0
Date: 2023-06-26
Authors@R: c(
person(given = "Peter",
family = "Solymos",
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version 0.2.1
# Version 0.3.0

* Variable splitting did not consider the separator on the right hand side, now fixed.
* Added new function `read_ini` to read INI configuration files.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ Rscript iris.R --species virginica

``` bash
Rscript iris.R --species setosa --verbose
# 2023-06-03 01:53:06 - Started
# 2023-06-26 22:27:09 - Started
# Getting summaries for species setosa
# Sepal.Length Sepal.Width Petal.Length Petal.Width
# Min. :4.300 Min. :2.300 Min. :1.000 Min. :0.100
Expand All @@ -535,12 +535,12 @@ Rscript iris.R --species setosa --verbose
# Mean :5.006 Mean :3.428 Mean :1.462 Mean :0.246
# 3rd Qu.:5.200 3rd Qu.:3.675 3rd Qu.:1.575 3rd Qu.:0.300
# Max. :5.800 Max. :4.400 Max. :1.900 Max. :0.600
# 2023-06-03 01:53:06 - Done
# 2023-06-26 22:27:09 - Done
```

``` bash
Rscript iris.R --species maxima --verbose
# 2023-06-03 01:53:06 - Started
# 2023-06-26 22:27:09 - Started
# Error: Provide a valid species
# Execution halted
```
Expand All @@ -567,15 +567,15 @@ Rscript mtcars.R

``` bash
Rscript mtcars.R --verbose --vars cyl
# 2023-06-03 01:53:07 - Started
# 2023-06-26 22:27:09 - Started
# (Intercept) cyl
# 37.88458 -2.87579
# 2023-06-03 01:53:07 - Done
# 2023-06-26 22:27:09 - Done
```

``` bash
Rscript mtcars.R --verbose --vars cal
# 2023-06-03 01:53:07 - Started
# 2023-06-26 22:27:09 - Started
# Error: Not valid variable
# Execution halted
```
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ library(rhub)
platforms()
f <- c("debian-gcc-devel",
"debian-gcc-release",
"macos-highsierra-release-cran",
# "macos-highsierra-release-cran",
"windows-x86_64-devel",
"windows-x86_64-release",
"windows-x86_64-oldrel")
Expand Down

0 comments on commit 50864c5

Please sign in to comment.