Skip to content

Commit 27d82c7

Browse files
Release 0.7.2 (#359)
1 parent d1c8924 commit 27d82c7

5 files changed

Lines changed: 20 additions & 3 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: altdoc
33
Title: Package Documentation Websites with 'Quarto', 'Docsify', 'Docute', or 'MkDocs'
4-
Version: 0.7.1
4+
Version: 0.7.2
55
Authors@R:
66
c(person(given = "Etienne",
77
family = "Bacher",

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# News
22

3+
## 0.7.2
4+
5+
* Disabled more tests on CRAN following a removal from CRAN due to a `NOTE` (#359).
6+
37
## 0.7.1
48

59
### Bug fixes

cran-comments.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
This release fixes an error due to changes in R-devel, and it includes a few other bug fixes.
1+
altdoc was removed from CRAN due to a `NOTE` happening only on Fedora about
2+
"non-standard things in the check directory". This release disables some tests
3+
on CRAN to reduce the risk of removal.
4+
5+
Timeline:
6+
7+
- 15 Feb. 2026: I receive the email to fix errors (due to changes in R-devel)
8+
before 1 March.
9+
- 17 Feb. 2026: altdoc 0.7.1 is submitted and published on CRAN, without any
10+
notice that there is something left to be fixed.
11+
- 1 March 2026: altdoc is removed from CRAN.

tests/testthat/_snaps/docsify/render_docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
plugins: [
3030
function(hook) {
31-
var footer = ["<a > <code> testpkg.altdoc </code> v. 0.1.0 </a> | Documentation made with <a href='https://altdoc.etiennebacher.com/'> <code> altdoc </code> v. 0.7.1</a>"].join('');
31+
var footer = ["<a > <code> testpkg.altdoc </code> v. 0.1.0 </a> | Documentation made with <a href='https://altdoc.etiennebacher.com/'> <code> altdoc </code> v. 0.7.2</a>"].join('');
3232

3333
hook.afterEach(function(html) {
3434
return html + footer;

tests/testthat/test-render_docs.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ test_that("quarto: autolink", {
261261
})
262262

263263
test_that("files in man/figures are copied to docs/help/figures", {
264+
skip_on_cran()
264265
skip_if(!.quarto_is_installed())
265266
path_to_example_pkg <- fs::path_abs(test_path("examples/testpkg.lifecycle"))
266267
create_local_project()
@@ -444,6 +445,7 @@ urls:
444445
# Test failures ------------------------------
445446

446447
test_that("render_docs errors if vignettes fail", {
448+
skip_on_cran()
447449
skip_if(!.quarto_is_installed())
448450
create_local_package()
449451
fs::dir_create("vignettes")
@@ -456,6 +458,7 @@ test_that("render_docs errors if vignettes fail", {
456458
})
457459

458460
test_that("render_docs errors if man fail", {
461+
skip_on_cran()
459462
skip_if(!.quarto_is_installed())
460463
create_local_package()
461464
fs::dir_create("man")

0 commit comments

Comments
 (0)