Skip to content

Commit c944c82

Browse files
authored
release v0.5.0 (#324)
1 parent 43d40ba commit c944c82

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
run: grep -E "Version:" $GITHUB_WORKSPACE/DESCRIPTION
2222
- name: Test if it is a production pattern (#.#.#)
2323
shell: bash
24-
run: grep -E "Version:\s\d+\.\d+\.\d+$" $GITHUB_WORKSPACE/DESCRIPTION
24+
run: |
25+
verLine=$(grep -E "Version:" $GITHUB_WORKSPACE/DESCRIPTION)
26+
dots="${verLine//[^.]}"
27+
cnt=${#dots}
28+
echo $((2-$cnt))
2529
devel_test:
2630
name: ${{ matrix.os }} (R ${{ matrix.r-version }})
2731
runs-on: ${{ matrix.os }}
@@ -53,6 +57,13 @@ jobs:
5357
r-version: ${{ matrix.r-version }}
5458
- uses: r-lib/actions/setup-pandoc@v2
5559
- uses: r-lib/actions/setup-tinytex@v2
60+
- run: tlmgr --version
61+
- name: Install additional LaTeX Packages
62+
run: |
63+
tlmgr update --self
64+
tlmgr update --all
65+
tlmgr install titling framed inconsolata
66+
tlmgr install collection-fontsrecommended
5667
- uses: r-lib/actions/setup-r-dependencies@v2
5768
with:
5869
extra-packages: any::rcmdcheck

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: pkgnet
22
Type: Package
33
Title: Get Network Representation of an R Package
4-
Version: 0.4.2.9999
4+
Version: 0.5.0
55
Authors@R: c(
66
person("Brian", "Burns", email = "brian.burns.opensource@gmail.com", role = c("aut", "cre")),
77
person("James", "Lamb", email = "jaylamb20@gmail.com", role = c("aut")),

NEWS.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
# pkgnet (dev)
1+
# pkgnet 0.5.0
22
## NEW FEATURES
33
* `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)
44
* `LinkingTo:` package dependencies are now included in the `DependencyReporter` and subsequent HTML report and objects. (#319 Thanks @petergodbert !)
55

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

1512
## BUGFIXES
1613
* `CreatePackageReporter()` failing on Windows to build package coverage when `report_path` specified. (#322)

cran-comments.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CRAN Submission History
22

3+
## v 0.5.0
4+
5+
### Submission on May 3rd, 2024
6+
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.
7+
8+
### CRAN Response
9+
None. Passed tests and merged without comment.
10+
311
## v 0.4.2
412

513
### Submission on December 21st, 2021

0 commit comments

Comments
 (0)