Skip to content

Commit d3911a5

Browse files
committed
Update URLs
1 parent 2a70759 commit d3911a5

File tree

3 files changed

+22
-24
lines changed

3 files changed

+22
-24
lines changed

NEWS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,21 @@
4848

4949
## Features / Fixes:
5050

51-
* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/progress.html)
51+
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/progress.html)
5252
on using furrr with [progressr](https://CRAN.R-project.org/package=progressr)
5353
for generating progress updates.
5454

55-
* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/carrier.html)
55+
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/carrier.html)
5656
discussing an alternative strategy to automatic globals detection using
5757
the [carrier](https://CRAN.R-project.org/package=carrier) package.
5858

59-
* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/chunking.html)
59+
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/chunking.html)
6060
discussing how furrr "chunks" input to send if off to workers.
6161

62-
* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/gotchas.html)
62+
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/gotchas.html)
6363
on common gotchas when using furrr.
6464

65-
* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/remote-connections.html)
65+
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/remote-connections.html)
6666
detailing how to use furrr with remote AWS EC2 connections.
6767

6868
* `future_walk()` and friends have been added to mirror `purrr::walk()`.

README.Rmd

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ library(purrr)
2121
library(tictoc)
2222
```
2323

24-
# furrr <a href='https://davisvaughan.github.io/furrr/'><img src='man/figures/logo.png' align="right" height="139" /></a>
24+
# furrr <a href='https://furrr.futureverse.org/'><img src='man/figures/logo.png' align="right" height="139" /></a>
2525

2626
<!-- badges: start -->
2727
[![CRAN status](https://www.r-pkg.org/badges/version/furrr)](https://cran.r-project.org/package=furrr)
@@ -65,17 +65,17 @@ remotes::install_github("DavisVaughan/furrr")
6565

6666
## Learning
6767

68-
The easiest way to learn about furrr is to browse [the website](https://davisvaughan.github.io/furrr/). In particular, the [function reference](https://davisvaughan.github.io/furrr/reference/index.html) page can be useful to get a general overview of the functions in the package, and the following vignettes are deep dives into various parts of furrr:
68+
The easiest way to learn about furrr is to browse [the website](https://furrr.futureverse.org/). In particular, the [function reference](https://furrr.futureverse.org/reference/index.html) page can be useful to get a general overview of the functions in the package, and the following vignettes are deep dives into various parts of furrr:
6969

70-
- [Common gotchas](https://davisvaughan.github.io/furrr/articles/articles/gotchas.html)
70+
- [Common gotchas](https://furrr.futureverse.org/articles/articles/gotchas.html)
7171

72-
- [Learn how furrr "chunks" your input](https://davisvaughan.github.io/furrr/articles/articles/chunking.html)
72+
- [Learn how furrr "chunks" your input](https://furrr.futureverse.org/articles/articles/chunking.html)
7373

74-
- [carrier - An alternative to automatic globals detection](https://davisvaughan.github.io/furrr/articles/articles/carrier.html)
74+
- [carrier - An alternative to automatic globals detection](https://furrr.futureverse.org/articles/articles/carrier.html)
7575

76-
- [Progress notifications with progressr](https://davisvaughan.github.io/furrr/articles/articles/progress.html)
76+
- [Progress notifications with progressr](https://furrr.futureverse.org/articles/articles/progress.html)
7777

78-
- [Using furrr with connections](https://davisvaughan.github.io/furrr/articles/articles/remote-connections.html)
78+
- [Using furrr with connections](https://furrr.futureverse.org/articles/articles/remote-connections.html)
7979

8080
## Example
8181

README.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<!-- README.md is generated from README.Rmd. Please edit that file -->
33

4-
# furrr <a href='https://davisvaughan.github.io/furrr/'><img src='man/figures/logo.png' align="right" height="139" /></a>
4+
# furrr <a href='https://furrr.futureverse.org/'><img src='man/figures/logo.png' align="right" height="139" /></a>
55

66
<!-- badges: start -->
77

@@ -59,27 +59,25 @@ remotes::install_github("DavisVaughan/furrr")
5959
## Learning
6060

6161
The easiest way to learn about furrr is to browse [the
62-
website](https://davisvaughan.github.io/furrr/). In particular, the
63-
[function
64-
reference](https://davisvaughan.github.io/furrr/reference/index.html)
65-
page can be useful to get a general overview of the functions in the
66-
package, and the following vignettes are deep dives into various parts
67-
of furrr:
62+
website](https://furrr.futureverse.org/). In particular, the [function
63+
reference](https://furrr.futureverse.org/reference/index.html) page can
64+
be useful to get a general overview of the functions in the package, and
65+
the following vignettes are deep dives into various parts of furrr:
6866

6967
- [Common
70-
gotchas](https://davisvaughan.github.io/furrr/articles/articles/gotchas.html)
68+
gotchas](https://furrr.futureverse.org/articles/articles/gotchas.html)
7169

7270
- [Learn how furrr “chunks” your
73-
input](https://davisvaughan.github.io/furrr/articles/articles/chunking.html)
71+
input](https://furrr.futureverse.org/articles/articles/chunking.html)
7472

7573
- [carrier - An alternative to automatic globals
76-
detection](https://davisvaughan.github.io/furrr/articles/articles/carrier.html)
74+
detection](https://furrr.futureverse.org/articles/articles/carrier.html)
7775

7876
- [Progress notifications with
79-
progressr](https://davisvaughan.github.io/furrr/articles/articles/progress.html)
77+
progressr](https://furrr.futureverse.org/articles/articles/progress.html)
8078

8179
- [Using furrr with
82-
connections](https://davisvaughan.github.io/furrr/articles/articles/remote-connections.html)
80+
connections](https://furrr.futureverse.org/articles/articles/remote-connections.html)
8381

8482
## Example
8583

0 commit comments

Comments
 (0)