Skip to content

Commit 8f10840

Browse files
hadleyjennybc
andauthored
Use bs5 (#1520)
* Use bs5 This is where pkgdown is going in the very near future so would be good to get in this release if possible * Update NEWS Co-authored-by: Jenny Bryan <[email protected]>
1 parent db08965 commit 8f10840

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

NEWS.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ usethis has a more sophisticated understanding of the default branch and gains s
5454
GitHub behaviour, where it has become essentially impossible to refer to the
5555
empty tree (#1472).
5656

57-
* `use_tidy_labels()` has been renamed to `use_tidy_github_labels()` (#1430).
58-
5957
* The minimum version of gh has been bumped to help / force more people to
6058
upgrade to the gh version that supports current GitHub PAT formats
6159
(@ijlyttle, #1454).
@@ -74,7 +72,7 @@ usethis has a more sophisticated understanding of the default branch and gains s
7472

7573
## Package development
7674

77-
* `use_pkgdown()` automatically uses bootstrap4 if the pkgdown version supports
75+
* `use_pkgdown()` automatically uses Bootstrap 5 if the pkgdown version supports
7876
it (anticipated for pkgdown 2.0.0).
7977

8078
* `use_lifecycle()` now imports `lifecycle::deprecated()` (#1419).

R/pkgdown.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ pkgdown_config <- function(destdir) {
5050
)
5151

5252
if (pkgdown_version() >= "1.9000") {
53-
config$template <- list(bootstrap = 4L)
53+
config$template <- list(bootstrap = 5L)
5454
}
5555

5656
if (!identical(destdir, "docs")) {

0 commit comments

Comments
 (0)