From 6aee2f38fc4c0f27f4d3b4be04af6534bd097c09 Mon Sep 17 00:00:00 2001 From: "Carter T. Butts" Date: Mon, 2 Feb 2026 22:02:37 -0800 Subject: [PATCH 1/3] Made changes to documentation to avoid an error with the upcoming network update. --- man/network.extensions.Rd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/man/network.extensions.Rd b/man/network.extensions.Rd index fb67de1..d1104a5 100644 --- a/man/network.extensions.Rd +++ b/man/network.extensions.Rd @@ -23,17 +23,17 @@ Various core functions from the \link[network]{network} package, with specialized extensions for handling dynamic data. } \usage{ -get.edgeIDs.active(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL, +\method{get.edgeIDs}{active}(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL, alter = NULL, neighborhood = c("out", "in", "combined"), rule = c("any", "all", "earliest", "latest"), na.omit = TRUE, active.default = TRUE) -get.edges.active(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL, +\method{get.edges}{active}(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL, alter = NULL, neighborhood = c("out", "in", "combined"), rule = c("any", "all", "earliest", "latest"), na.omit = TRUE, active.default = TRUE) -get.neighborhood.active(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL, +\method{get.neighborhood}{active}(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL, type = c("out", "in", "combined"), rule = c("any", "all", "earliest", "latest"), na.omit = TRUE, active.default = TRUE) -is.adjacent.active(x, vi, vj, onset = NULL, terminus = NULL, length = NULL, at = NULL, +\method{is.adjacent}{active}(x, vi, vj, onset = NULL, terminus = NULL, length = NULL, at = NULL, rule = c("any", "all", "earliest", "latest"), na.omit = FALSE, active.default = TRUE) \method{network.dyadcount}{active}(x, onset = NULL, terminus = NULL, length = NULL, at = NULL, From d9eede36bd0dc9bc22272f47149e960620558411 Mon Sep 17 00:00:00 2001 From: Skye Bender-deMoll Date: Sun, 29 Mar 2026 21:49:19 -0700 Subject: [PATCH 2/3] bumping upload-artifact to v4 to try to fix builds --- .github/workflows/R-CMD-check.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 9f474eb..b9f4684 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -169,7 +169,7 @@ jobs: - name: Upload build results if: contains(matrix.config.flags, 'binaries') && !failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ runner.os }}-r${{ matrix.config.r }}-binaries path: binaries @@ -243,7 +243,7 @@ jobs: - name: Upload check results if: contains(matrix.config.flags, 'covr') == false && failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ runner.os }}-r${{ matrix.config.r }}-results path: | From faec1183b7c31b2f13d6f75f7af6fe606307d80c Mon Sep 17 00:00:00 2001 From: Skye Bender-deMoll Date: Mon, 30 Mar 2026 07:07:13 -0700 Subject: [PATCH 3/3] bump versions and changelog --- ChangeLog | 2 ++ DESCRIPTION | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6968a98..334d7e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ Change Log: +v0.11.6 + -changes to the usage statement for the network.extensions.Rd file, which uses the \method{} tag to help R into thinking that the *.active functions are S3 methods. v0.11.5 - update links to .paj example files and fix some documentation warnings v0.11.4 diff --git a/DESCRIPTION b/DESCRIPTION index f2ba9e8..0f9439c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,9 +1,9 @@ Package: networkDynamic -Version: 0.11.5 -Date: 2024-11-21 +Version: 0.11.6 +Date: 2026-03-29 Title: Dynamic Extensions for Network Objects Type: Package -Depends: R (>= 3.0.0), network (>= 1.17.0) +Depends: R (>= 3.0.0), network (>= 1.20.0) Imports: statnet.common, methods, networkLite Suggests: testthat LinkingTo: network