Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v0.5.0 #324

Merged
merged 3 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
run: grep -E "Version:" $GITHUB_WORKSPACE/DESCRIPTION
- name: Test if it is a production pattern (#.#.#)
shell: bash
run: grep -E "Version:\s\d+\.\d+\.\d+$" $GITHUB_WORKSPACE/DESCRIPTION
run: |
verLine=$(grep -E "Version:" $GITHUB_WORKSPACE/DESCRIPTION)
dots="${verLine//[^.]}"
cnt=${#dots}
echo $((2-$cnt))
devel_test:
name: ${{ matrix.os }} (R ${{ matrix.r-version }})
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -53,6 +57,13 @@ jobs:
r-version: ${{ matrix.r-version }}
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-tinytex@v2
- run: tlmgr --version
- name: Install additional LaTeX Packages
run: |
tlmgr update --self
tlmgr update --all
tlmgr install titling framed inconsolata
tlmgr install collection-fontsrecommended
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pkgnet
Type: Package
Title: Get Network Representation of an R Package
Version: 0.4.2.9999
Version: 0.5.0
Authors@R: c(
person("Brian", "Burns", email = "[email protected]", role = c("aut", "cre")),
person("James", "Lamb", email = "[email protected]", role = c("aut")),
Expand Down
13 changes: 5 additions & 8 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
# pkgnet (dev)
# pkgnet 0.5.0
## NEW FEATURES
* `do.call` with the function argument as string will now properly appear on the function reporter. Previously, this would show as a `do.call` node with a circular reference. (#302)
* `LinkingTo:` package dependencies are now included in the `DependencyReporter` and subsequent HTML report and objects. (#319 Thanks @petergodbert !)

## CHANGES
* Updated `pkgnet-intro` vignette to include information on the Class Inheritance Reporter and other minor edits.
<<<<<<< HEAD
* Recursive functions `.parse_function` and `.parse_R6_expression` made tolerant to control statemets like `break` or `next` that would break the recursion. (#322)
* Excessive warnings removed for custom `vignette_path` param in `CreatePackageVignette()` (#322)
=======
* Updated R6 class documentation to be in line with current `roxygen2` standards.
>>>>>>> df2fdd4 (latest R6 doc standards for roxygen and pkgdown)
* Updated `pkgnet-intro` vignette to include information on the Class Inheritance Reporter and other minor edits.
* Recursive functions `.parse_function` and `.parse_R6_expression` made tolerant to control statemets like `break` or `next` that would break the recursion. (#322)
* Excessive warnings removed for custom `vignette_path` param in `CreatePackageVignette()` (#322)
* Updated R6 class documentation to be in line with current `roxygen2` standards.

## BUGFIXES
* `CreatePackageReporter()` failing on Windows to build package coverage when `report_path` specified. (#322)
Expand Down
8 changes: 8 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CRAN Submission History

## v 0.5.0

### Submission on May 3rd, 2024
This is a minor release that includes a number of new features, bug fixes and minor backwards compatible changes. Please see `NEWS.md` for details.

### CRAN Response
None. Passed tests and merged without comment.

## v 0.4.2

### Submission on December 21st, 2021
Expand Down
Loading