Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Solymos <psolymos@gmail.com>
  • Loading branch information
psolymos committed Feb 11, 2023
1 parent 0b89445 commit fcee169
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.1.6
Date: 2022-11-03
Version: 0.2.0
Date: 2023-02-10
Authors@R: c(
person(given = "Peter",
family = "Solymos",
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Version 0.1.6
# Version 0.2.0

* Added functionality to substitute variables (#8).
* Nicer formatting for markdown code blocks (#10 by @eitsupi).

# Version 0.1.5

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-02-04 00:30:52 - Started
# 2023-02-10 18:35:22 - 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-02-04 00:30:52 - Done
# 2023-02-10 18:35:22 - Done
```

``` bash
Rscript iris.R --species maxima --verbose
# 2023-02-04 00:30:52 - Started
# 2023-02-10 18:35:22 - 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-02-04 00:30:52 - Started
# 2023-02-10 18:35:22 - Started
# (Intercept) cyl
# 37.88458 -2.87579
# 2023-02-04 00:30:52 - Done
# 2023-02-10 18:35:22 - Done
```

``` bash
Rscript mtcars.R --verbose --vars cal
# 2023-02-04 00:30:52 - Started
# 2023-02-10 18:35:22 - Started
# Error: Not valid variable
# Execution halted
```
Expand Down
1 change: 0 additions & 1 deletion RELEASE.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Check spelling
dict <- hunspell::dictionary('en_CA')
devtools::spell_check()
spelling::update_wordlist()

Expand Down

0 comments on commit fcee169

Please sign in to comment.