Skip to content

Commit c22448f

Browse files
committed
bump main branch to dev version, update news with new features
1 parent 8eacd3f commit c22448f

File tree

4 files changed

+33
-9
lines changed

4 files changed

+33
-9
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: rJavaEnv
22
Title: 'Java' Environments for R Projects
3-
Version: 0.2.2
3+
Version: 0.2.2.9000
44
Authors@R: c(
55
person("Egor", "Kotov", , "[email protected]", role = c("aut", "cre", "cph"),
66
comment = c(ORCID = "0000-0001-6690-5345")),

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# rJavaEnv (development version)
2+
3+
## New features
4+
5+
- `force` argument in `java_download()`. When set to `TRUE`, allows to overwrite the distribution file if it already exist in the cache.
6+
17
# rJavaEnv 0.2.2 (2024-09-13)
28

39
* Hot fix: improve robustness of setting Java environment in the current session with either `use_java()` or `java_quick_install()`. See bug fix below.

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,32 @@ Install from CRAN:
6262
install.packages('rJavaEnv')
6363
```
6464

65-
Install latest release from **R-multiverse**:
65+
<summary>
66+
67+
Install the development version
68+
</summary>
69+
70+
Install the latest release development version from **R-multiverse**:
6671

6772
``` r
6873
install.packages('rJavaEnv',
6974
repos = c('https://community.r-multiverse.org', 'https://cloud.r-project.org')
7075
)
7176
```
7277

73-
You can also install the development version of `rJavaEnv` from GitHub:
78+
You can also install the development version of `rJavaEnv` directly from
79+
GitHub:
7480

7581
``` r
7682
if (!requireNamespace("remotes", quietly = TRUE)) {
7783
install.packages("remotes")
7884
}
7985

80-
remotes::install_github("e-kotov/rJavaEnv@dev", force = TRUE)
86+
remotes::install_github("e-kotov/rJavaEnv", force = TRUE)
8187
```
8288

89+
</details>
90+
8391
## Simple Example
8492

8593
``` r

README.qmd

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ Quickly install `Java Development Kit (JDK)` without administrative privileges a
4141

4242

4343
```{r results="asis", eval = !is_html, include = !is_html, include = FALSE}
44-
glue::glue('<script type="application/ld+json">
44+
glue::glue(
45+
'<script type="application/ld+json">
4546
{glue::glue_collapse(readLines("inst/schemaorg.json"), sep = "\n")}
46-
</script>')
47+
</script>'
48+
)
4749
```
4850

4951
## Install
@@ -54,24 +56,32 @@ Install from CRAN:
5456
install.packages('rJavaEnv')
5557
```
5658

57-
Install latest release from **R-multiverse**:
59+
60+
61+
<summary>
62+
Install the development version
63+
</summary>
64+
65+
Install the latest release development version from **R-multiverse**:
5866

5967
```r
6068
install.packages('rJavaEnv',
6169
repos = c('https://community.r-multiverse.org', 'https://cloud.r-project.org')
6270
)
6371
```
6472

65-
You can also install the development version of `rJavaEnv` from GitHub:
73+
You can also install the development version of `rJavaEnv` directly from GitHub:
6674

6775
```r
6876
if (!requireNamespace("remotes", quietly = TRUE)) {
6977
install.packages("remotes")
7078
}
7179

72-
remotes::install_github("e-kotov/rJavaEnv@dev", force = TRUE)
80+
remotes::install_github("e-kotov/rJavaEnv", force = TRUE)
7381
```
7482

83+
</details>
84+
7585
## Simple Example
7686

7787
```r

0 commit comments

Comments
 (0)