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

v1.4.2 #298

Merged
merged 3 commits into from
Sep 4, 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
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
Loading