Skip to content

Commit

Permalink
fix: fixed issue with copying of final pdf-report
Browse files Browse the repository at this point in the history
  • Loading branch information
kapsner committed Jun 4, 2024
1 parent f44a854 commit 008dc28
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: DQAstats
Title: Core Functions for Data Quality Assessment
Version: 0.3.4.9007
Date: 2024-06-03
Version: 0.3.4.9008
Date: 2024-06-04
Authors@R: c(
person("Lorenz A.", "Kapsner", , "[email protected]", role = c("cre", "aut"),
comment = c(ORCID = "0000-0003-1866-860X")),
Expand Down
16 changes: 15 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,20 @@

#### Other changes

- reverted rv_list to rv again
([f44a854](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/f44a854c6b7e70ee23eb6baadde6ed55422c67b7))
- removed as.list(rv) again
([017bb49](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/017bb49ecdd01d60015137119c2612a6a90213a7))
- changed report-generation
([ac07d40](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/ac07d40f1145015051873ca08a0ea1590839b101))
- merged both branches
([7aa766f](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/7aa766f0bf62f42c4e47ddcff775bfec74b42af6))
- fixed errors
([8702985](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/870298524d5437a8896c128204acb85948e873ed))
- re-introduced missing pdf-copying
([4f6a7d5](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/4f6a7d52c78b005a9bf0d2ebbb6e5c4f4562807f))
- fixed all changes that have not been merged before
([d370e06](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/d370e069d0c0cc1795ec54955a46aad24f9af27b))
- added latest enhancements from dev-branch
([55b011b](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/55b011b27c8535f82f3fbecd89529b728ae15452))
- updated dev-stuffs
Expand Down Expand Up @@ -90,7 +104,7 @@
([d1f2610](https://gitlab.miracum.org/miracum/dqa/dqastats/tree/d1f2610048a79b42b0a5036e12b25f87e3976d14))

Full set of changes:
[`v0.3.4...55b011b`](https://gitlab.miracum.org/miracum/dqa/dqastats/-/compare/v0.3.4...55b011b)
[`v0.3.4...f44a854`](https://gitlab.miracum.org/miracum/dqa/dqastats/-/compare/v0.3.4...f44a854)

## v0.3.4 (2024-04-04)

Expand Down
2 changes: 1 addition & 1 deletion R/create_pdf_report.R
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ create_pdf_report <- function(rv = rv,
metadata_file = params_file
)

pdf_temp_file <- gsub("\\.Rmd$", ".pdf", template_file)
pdf_temp_file <- gsub("\\.qmd$", ".pdf", template_file)

file.copy(
from = pdf_temp_file,
Expand Down
2 changes: 1 addition & 1 deletion data-raw/devstuffs.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ my_desc$set_authors(c(
# Remove some author fields
my_desc$del("Maintainer")
# Set the version
my_desc$set_version("0.3.4.9007")
my_desc$set_version("0.3.4.9008")

# The title of your package
my_desc$set(Title = "Core Functions for Data Quality Assessment")
Expand Down

0 comments on commit 008dc28

Please sign in to comment.