Skip to content

Commit

Permalink
Merge pull request #298 from stocnet/develop
Browse files Browse the repository at this point in the history
v1.4.2
  • Loading branch information
jhollway authored Sep 4, 2024
2 parents 88dfd15 + b64643f commit fbeaea8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pushrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
prerelease: false

- name: Download binaries
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4

- name: Display structure of downloaded files
run: ls -R
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: migraph
Title: Univariate and Multivariate Tests for Multimodal and Other Networks
Version: 1.4.1
Date: 2024-07-19
Version: 1.4.2
Date: 2024-09-04
Description: A set of tools for testing networks.
It includes functions for univariate and multivariate
conditional uniform graph and quadratic assignment procedure testing,
Expand Down
13 changes: 13 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# migraph 1.4.2

2024-09-04

## Package

- Using github actions download artifact v4 to address dependabot security warning

## Models

- `test_permutation()` now uses `manynet::to_permuted()` instead of the older
`manynet::generate_permutation()` syntax

# migraph 1.4.1

2024-07-19
Expand Down
2 changes: 1 addition & 1 deletion R/model_tests.R
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ test_permutation <- function(.data, FUN, ...,
oplan <- future::plan(strategy)
on.exit(future::plan(oplan), add = TRUE)
rands <- furrr::future_map(1:times,
function(x) manynet::generate_permutation(.data),
function(x) manynet::to_permuted(.data),
.progress = verbose,
.options = furrr::furrr_options(seed = T))
if (!is.null(args)) {
Expand Down
6 changes: 0 additions & 6 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,3 @@

0 errors | 0 warnings | 0 notes

* This release is expected to create errors with older versions of manynet,
but should create no errors with the latest version
* Currently binaries of manynet have been built for most flavors, with the exception of r-release-windows-x86_66
* There is expected to be test errors for this flavor until a manynet binary for v1.0.1 has been built
* Since manynet is a Depends for migraph, this should not pose a problem for users
upgrading

0 comments on commit fbeaea8

Please sign in to comment.