Skip to content

Commit

Permalink
Merge branch 'main' into fix/hrg-conversion-leak
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 20, 2024
2 parents d5a61d1 + 3eea925 commit f6779f6
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 12 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: igraph
Version: 1.6.0.9025
Version: 1.6.0.9027
Title: Network Analysis and Visualization
Authors@R: c(
person("Gábor", "Csárdi", , "[email protected]", role = "aut",
Expand Down
38 changes: 38 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
<!-- NEWS.md is maintained by https://fledge.cynkra.com, contributors should not edit this file -->

# igraph 1.6.0.9027

## Documentation

- Move deprecation badge to top of doc pages.


# igraph 1.6.0.9026

## Features

- Breaking change: remove default value for 'loops' argument of centr\_degree\_tmax() (#1114).

## Continuous integration

- Go back to stricter checks (#1012).

## Documentation

- Rm stray alias (#1117).

## Refactoring

- Use %||% from rlang (#1112).

- Breaking change: change R/par.R (#1104).

## Testing

- Remove top-level code in test-indexing.R (#1085).

## Breaking changes

- Breaking change: change R/par.R (#1104).

- Breaking change: remove default value for 'loops' argument of centr\_degree\_tmax() (#1114).


# igraph 1.6.0.9025

## Chore
Expand Down
8 changes: 5 additions & 3 deletions R/centrality.R
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,10 @@ alpha.centrality <- function(graph, nodes = V(graph), alpha = 1, loops = FALSE,

#' Deprecated version of `betweenness()`
#'
#' @description Use [`betweenness()`] with the `cutoff` argument instead.
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' Use [`betweenness()`] with the `cutoff` argument instead.
#' @param vids The vertices for which the vertex betweenness estimation will be
#' calculated.
#' @inheritParams betweenness
Expand Down Expand Up @@ -342,9 +344,9 @@ edge_betweenness <- function(graph, e = E(graph),
#' Deprecated version of `edge_betweenness()`
#'
#' @description
#' Use [`edge_betweenness()`] with the `cutoff` argument instead.
#' `r lifecycle::badge("deprecated")`
#'
#' Use [`edge_betweenness()`] with the `cutoff` argument instead.
#' @inheritParams edge_betweenness
#' @keywords internal
#' @export
Expand Down Expand Up @@ -458,9 +460,9 @@ closeness <- function(graph, vids = V(graph),
#' Deprecated version of `closeness()`
#'
#' @description
#' Use [`closeness()`] with the `cutoff` argument instead.
#' `r lifecycle::badge("deprecated")`
#'
#' Use [`closeness()`] with the `cutoff` argument instead.
#' @inheritParams closeness
#' @keywords internal
#' @export
Expand Down
6 changes: 3 additions & 3 deletions man/centr_degree_tmax.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/centralization.degree.tmax.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion man/estimate_betweenness.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion man/estimate_closeness.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion man/estimate_edge_betweenness.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f6779f6

Please sign in to comment.