Skip to content

Commit f834e12

Browse files
committed
Increment version number to 0.11.2
1 parent 735735e commit f834e12

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: learnr
33
Title: Interactive Tutorials for R
4-
Version: 0.11.1.9000
4+
Version: 0.11.2
55
Authors@R: c(
66
person("Garrick", "Aden-Buie", , "garrick@rstudio.com", role = c("aut", "cre"),
77
comment = c(ORCID = "0000-0002-7111-0077")),

NEWS.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
# learnr (development version)
1+
# learnr 0.11.2
22

3-
- Bumped **markdown** package version requirement to v1.3 and stopped using deprecated functions and options from its older versions (#745).
3+
- Fixed an issue that prevented htmlwidgets from working in exercise code unless similar widgets were added to the tutorial prose (thanks @munoztd0 #744, #745).
4+
5+
- learnr now requires **markdown** version 1.3 or later (#745).
6+
7+
- Fixed a test involving UTF-8 character strings (#749).
48

59
# learnr 0.11.1
610

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ community](https://img.shields.io/badge/community-learnr-blue?style=social&logo=
1818
<!-- badges: end -->
1919

2020
The **learnr** package makes it easy to turn any [R
21-
Markdown](http://rmarkdown.rstudio.com/) document into an interactive
21+
Markdown](https://rmarkdown.rstudio.com/) document into an interactive
2222
tutorial. Tutorials consist of content along with interactive components
2323
for checking and reinforcing understanding. Tutorials can include any or
2424
all of the following:
@@ -54,6 +54,5 @@ with the [remotes package](https://remotes.r-lib.org):
5454
remotes::install_github("rstudio/learnr")
5555

5656
learnr works best with a recent [version of
57-
RStudio](https://www.rstudio.com/products/rstudio/download/) (v1.0.136
58-
or later) which includes tools for easily running and previewing
59-
tutorials.
57+
RStudio](https://posit.co/download/rstudio-desktop/) (v1.0.136 or later)
58+
which includes tools for easily running and previewing tutorials.

cran-comments.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22

33
0 errors | 0 warnings | 0 notes
44

5-
This is a maintenance release to fix two issues
6-
raised by CRAN checks after the 0.11.0 release.
5+
This is a maintenance release to fix a failing test in non-UTF-8 compatible environments.

man/rmd-fragments/learnr-install.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Or you can install the most recent version in-development from GitHub with the [
1111
remotes::install_github("rstudio/learnr")
1212
```
1313

14-
learnr works best with a recent [version of RStudio](https://www.rstudio.com/products/rstudio/download/) (v1.0.136 or later) which includes tools for easily running and previewing tutorials.
14+
learnr works best with a recent [version of RStudio](https://posit.co/download/rstudio-desktop/) (v1.0.136 or later) which includes tools for easily running and previewing tutorials.

man/rmd-fragments/learnr-overview.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The **learnr** package makes it easy to turn any [R Markdown](http://rmarkdown.rstudio.com/) document into an interactive tutorial. Tutorials consist of content along with interactive components for checking and reinforcing understanding. Tutorials can include any or all of the following:
1+
The **learnr** package makes it easy to turn any [R Markdown](https://rmarkdown.rstudio.com/) document into an interactive tutorial. Tutorials consist of content along with interactive components for checking and reinforcing understanding. Tutorials can include any or all of the following:
22

33
1. Narrative, figures, illustrations, and equations.
44

pkgdown/index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ community](https://img.shields.io/badge/community-learnr-blue?style=social&logo=
1818
<!-- badges: end -->
1919

2020
The **learnr** package makes it easy to turn any [R
21-
Markdown](http://rmarkdown.rstudio.com/) document into an interactive
21+
Markdown](https://rmarkdown.rstudio.com/) document into an interactive
2222
tutorial. Tutorials consist of content along with interactive components
2323
for checking and reinforcing understanding. Tutorials can include any or
2424
all of the following:
@@ -103,9 +103,8 @@ with the [remotes package](https://remotes.r-lib.org):
103103
remotes::install_github("rstudio/learnr")
104104

105105
learnr works best with a recent [version of
106-
RStudio](https://www.rstudio.com/products/rstudio/download/) (v1.0.136
107-
or later) which includes tools for easily running and previewing
108-
tutorials.
106+
RStudio](https://posit.co/download/rstudio-desktop/) (v1.0.136 or later)
107+
which includes tools for easily running and previewing tutorials.
109108

110109
## Hello, Tutorial!
111110

vignettes/shinyapps-publishing.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This will not be covered extensively here, as our main concern is optimizing tut
3333
Note that there are other options for hosting tutorials besides `shinyapps.io`, such as:
3434

3535
- [creating a tutorial package](https://rstudio.github.io/learnr/publishing.html#r_package) that students run locally (free, but requires students to be able to download and install packages, as well as run commands in R), or
36-
- setting up your own [free academic Shiny Server Pro account](https://www.rstudio.com/pricing/academic-pricing/) (free, provided you have a server at your institution that will host the software, which may require IT help).
36+
- setting up your own [free academic Shiny Server Pro account](https://posit.co/pricing/academic/) (free, provided you have a server at your institution that will host the software, which may require IT help).
3737

3838
Both of these require some configuration and setup, and may be beyond what either you or your students wish to undertake at the time (i.e. if you are running a short-term course).
3939
This leads to a third option that costs money, but may save you valuable time on system administration: deploying your learnr tutorial on `shinyapps.io`.

0 commit comments

Comments
 (0)