Skip to content

Commit

Permalink
fix: hotfix to address quarto cran issue on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
kapsner committed May 29, 2024
1 parent 2154de3 commit 959f6da
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
8 changes: 5 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: autonewsmd
Title: Auto-Generate Changelog using Conventional Commits
Version: 0.0.7
Version: 0.0.8
Authors@R:
person("Lorenz A.", "Kapsner", , "[email protected]", role = c("cre", "aut", "cph"),
comment = c(ORCID = "0000-0003-1866-860X"))
Expand All @@ -11,7 +11,7 @@ License: GPL-3
URL: https://github.com/kapsner/autonewsmd
BugReports: https://github.com/kapsner/autonewsmd/issues
Depends:
R (>= 3.4)
R (>= 3.6)
Imports:
data.table,
git2r,
Expand All @@ -25,6 +25,8 @@ Suggests:
testthat (>= 3.0.1)
VignetteBuilder:
knitr
Date/Publication: 2024-05-27 14:57:29.078757 UTC
Date/Publication: 2024-05-29 11:43:52.744203 UTC
Encoding: UTF-8
SystemRequirements: Quarto command line tools
(https://github.com/quarto-dev/quarto-cli).
RoxygenNote: 7.3.1
12 changes: 8 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@


# autonewsmd NEWS

## Unreleased (2024-05-23)
## v0.0.7 (2024-05-27)

#### Bug fixes

Expand Down Expand Up @@ -28,6 +30,8 @@

#### Other changes

- version bump to 0.0.7
([2154de3](https://github.com/kapsner/autonewsmd/tree/2154de39f66d104933befaf8f5f086dd71f641d5))
- fixed deps url
([ab71f0d](https://github.com/kapsner/autonewsmd/tree/ab71f0df685c3e99ab8cf610580c5a1e1ad277ae))
- removed default image extension causing errors with badge urls
Expand Down Expand Up @@ -62,13 +66,13 @@
([a9211ea](https://github.com/kapsner/autonewsmd/tree/a9211ea4994e5d53aff9989f43afbb33a094a094))
- added mlsurvlrnrs pkg to used by section
([3d5a012](https://github.com/kapsner/autonewsmd/tree/3d5a012643fd6bedb54e23ffd870d6447cadbb63))
- merge pull request \#5 from kapsner/development
- merge pull request #5 from kapsner/development
([3b07f0a](https://github.com/kapsner/autonewsmd/tree/3b07f0afe953e11194b81fcf0ada306dee191bb3))
- updated news.md
([5decf24](https://github.com/kapsner/autonewsmd/tree/5decf248ec4b12bcdc54baeedf631075657fad5a))

Full set of changes:
[`v0.0.4...ab71f0d`](https://github.com/kapsner/autonewsmd/compare/v0.0.4...ab71f0d)
[`v0.0.4...v0.0.7`](https://github.com/kapsner/autonewsmd/compare/v0.0.4...v0.0.7)

## v0.0.4 (2022-10-31)

Expand All @@ -85,7 +89,7 @@ Full set of changes:

- fixed issue when only one commit available
([1c323d1](https://github.com/kapsner/autonewsmd/tree/1c323d115274b09fe9e05695ed95a89084a3cd6a))
- fixed reference to type\_mappings in private
- fixed reference to type_mappings in private
([65ece46](https://github.com/kapsner/autonewsmd/tree/65ece468574594c8377e2db2d621a490af6979cd))

#### Refactorings
Expand Down
9 changes: 7 additions & 2 deletions data-raw/devstuffs.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ my_desc$set_authors(c(
# Remove some author fields
my_desc$del("Maintainer")
# Set the version
my_desc$set_version("0.0.7")
my_desc$set_version("0.0.8")
# The title of your package
my_desc$set(Title = "Auto-Generate Changelog using Conventional Commits")
# The description of your package
Expand All @@ -37,6 +37,11 @@ my_desc$set("BugReports",

# Vignette Builder
my_desc$set("VignetteBuilder" = "knitr")
# Quarto
my_desc$set("SystemRequirements" = paste0(
"Quarto command line tools ",
"(https://github.com/quarto-dev/quarto-cli).")
)

# License
my_desc$set("License", "GPL-3")
Expand All @@ -47,7 +52,7 @@ my_desc$write(file = "DESCRIPTION")
#usethis::use_gpl3_license()

# Depends
usethis::use_package("R", min_version = "3.4", type = "Depends")
usethis::use_package("R", min_version = "3.6", type = "Depends")

# Imports
# https://cran.r-project.org/web/packages/data.table/vignettes/datatable-importing.html
Expand Down

0 comments on commit 959f6da

Please sign in to comment.