Skip to content

Commit b48e832

Browse files
author
Stefano Coretta
committed
πŸ“¦ prepare release v2.1.0
1 parent 71008b0 commit b48e832

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

β€ŽDESCRIPTIONβ€Ž

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: speakr
22
Type: Package
33
Title: A Wrapper for the Phonetic Software Praat
4-
Version: 2.0.1.9000
5-
Date: 2019-03-27
4+
Version: 2.1.0
5+
Date: 2019-04-23
66
Authors@R: person("Stefano", "Coretta", email = "stefano.coretta@gmail.com",
77
role = c("aut", "cre"))
88
Description: It allows running Praat scripts from R and it provides some
@@ -17,3 +17,4 @@ Suggests: knitr,
1717
tidyverse,
1818
rmarkdown
1919
VignetteBuilder: knitr
20+
Language: en_GB

β€ŽNEWS.mdβ€Ž

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## Unreleased
3+
## [2.1.0] - 2019-04-23
44
### Changed
55
- expanded documentation
66

@@ -28,12 +28,13 @@
2828
- code style of some functions
2929

3030
### Removed
31-
- old functions with cameCase names
31+
- old functions with camelCase names
3232

3333
## 1.0.0
3434
### Added
3535
- everything
3636

37+
[2.1.0]: https://github.com/stefanocoretta/speakr/compare/v2.0.2...v2.1.0
3738
[2.0.2]: https://github.com/stefanocoretta/speakr/compare/v2.0.1...v2.0.2
3839
[2.0.1]: https://github.com/stefanocoretta/speakr/compare/v2.0.0...v2.0.1
3940
[2.0.0]: https://github.com/stefanocoretta/speakr/compare/v1.0.0...v2.0.0

β€ŽR/paths.Rβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#' Get system path to Praat.
22
#'
3-
#' The function returns the path to the Praat executable depeding on the
3+
#' The function returns the path to the Praat executable depending on the
44
#' system.
55
#'
66
#' @return The path to the Praat executable.
@@ -44,7 +44,7 @@ get_praat_path <- function() {
4444

4545
#' Get system path to lmt.
4646
#'
47-
#' The function returns the path to the lmt executable depeding on the
47+
#' The function returns the path to the lmt executable depending on the
4848
#' system.
4949
#'
5050
#' @return The path to the lmt executable.

β€ŽREADME.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is the repository of `speakr`, an `R` package for running Praat scripts and
44

55
## Installation
66

7-
To install `speakr`, use `devtools::install_github("stefanocoretta/speakr@v2.0.2", build_opts = c("--no-resave-data", "--no-manual"))`. For a quick start on how to use the package, check out the vignette with `vignette("run-praat", "speakr")`.
7+
To install `speakr`, use `devtools::install_github("stefanocoretta/speakr@v2.1.0", build_opts = c("--no-resave-data", "--no-manual"))`. For a quick start on how to use the package, check out the vignette with `vignette("run-praat", "speakr")`.
88

99
If you want to tangle the code of your Praat script with the literate markdown tangler, you need to also install `lmt` from [here](https://github.com/driusan/lmt).
1010
To use `lmt` with `speakr`, your Go workspace (which will contain the `lmt` executable) needs to be in the default location (`$HOME/go` in Unix and `%USERPROFILE%/go` in Windows). If you are using a custom workspace location, you can set the custom path to `lmt` with `set_lmt_path()` at the start of every R session. Check how to use `speakr::lmt()` by running `vignette("literate-praat", "speakr")`.
@@ -15,6 +15,6 @@ For a demo, check [this repo](https://github.com/stefanocoretta/speakr-demo).
1515

1616
## Disclaimer
1717

18-
The current stable (πŸ› free) version is `v2.0.2`.
18+
The current stable (πŸ› free) version is `v2.01.0.
1919

2020
Package versions ending with `.9000` are developmental. Things might break when updating to the development version.

β€Žman/lmt_path.Rdβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žman/praat_path.Rdβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žvignettes/run-praat.Rmdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ If the script logs results to a file, the file is created in the same directory
3131

3232
If, on the other hand, the script logs output to the Info window (for example by using `writeInfo` in the script), you can specify the argument `capture = TRUE` to capture the argument into an R character variable. The outputted string can then be read in as a data frame or tibble.
3333

34-
The following example runs the script `get-formants.praat`, which requires two arguments, `"Herz"` and `0.03` (these will be passed to the `form` in the script). The script logs the results to the Info window with `appendInfoLine` so we use `capture = TRUE` here to stransform the console output into a string and pipe it (`%>%`) to `read_csv()`.
34+
The following example runs the script `get-formants.praat`, which requires two arguments, `"Herz"` and `0.03` (these will be passed to the `form` in the script). The script logs the results to the Info window with `appendInfoLine` so we use `capture = TRUE` here to transform the console output into a string and pipe it (`%>%`) to `read_csv()`.
3535

3636
```{r run}
3737
# system.file() is needed here because the example files reside in the package.

0 commit comments

Comments
Β (0)