Skip to content
Open
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.9.2"
".": "2.10.0"
}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

All notable changes to this project will be documented in this file. Releases are automated with [release-please](https://github.com/googleapis/release-please), using [Conventional Commits](https://www.conventionalcommits.org) to determine version bumps and changelog entries.

## [2.10.0](https://github.com/mapequation/infomap/compare/v2.9.2...v2.10.0) (2026-04-13)


### Features

* add per-level module counts to json output ([#372](https://github.com/mapequation/infomap/issues/372)) ([dc9b30c](https://github.com/mapequation/infomap/commit/dc9b30cd7278d604e7327ddf6c33056d6a471dd2))


### Bug Fixes

* avoid expensive vector copies in regularized flow lambdas ([#371](https://github.com/mapequation/infomap/issues/371)) ([23445fc](https://github.com/mapequation/infomap/commit/23445fcdf708f0ad1d0621c753582d63a9d14bb6))
* delete collapsed children when resetting InfoNode trees ([#403](https://github.com/mapequation/infomap/issues/403)) ([050a686](https://github.com/mapequation/infomap/commit/050a6869a0b028a5957cc1db296b29241f0e4866))
* guard empty-module access in parallel move path ([#404](https://github.com/mapequation/infomap/issues/404)) ([c445a88](https://github.com/mapequation/infomap/commit/c445a88fe6f34f4e51ef834f1722ce822ad8270a))
* guard multilayer state id shift for zero ([#373](https://github.com/mapequation/infomap/issues/373)) ([499b88a](https://github.com/mapequation/infomap/commit/499b88a2184929740f45e5355b0b94fe67e3fb6e))
* handle regularized no-link networks ([#374](https://github.com/mapequation/infomap/issues/374)) ([f2700d0](https://github.com/mapequation/infomap/commit/f2700d03d806cf5f6593be142a5b2accae1178c7))
* plumbing and lifecycle fixes ([#405](https://github.com/mapequation/infomap/issues/405)) ([ce27af6](https://github.com/mapequation/infomap/commit/ce27af604ac8806284ee84ce9de4389ad89839cd))
* tighten wrapper edge cases ([4a9d542](https://github.com/mapequation/infomap/commit/4a9d54298629fdc484d8c40d44a9f3d6d8434ffd))


### Performance Improvements

* **ci:** add PR perf regression benchmark check ([#427](https://github.com/mapequation/infomap/issues/427)) ([270e527](https://github.com/mapequation/infomap/commit/270e5274ade5b23e0ed2b429bad3e53fe06c085e))

### [2.9.2](https://github.com/mapequation/infomap/compare/v2.9.1...v2.9.2) (2026-02-25)


Expand Down
26 changes: 13 additions & 13 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
message: If you use this software, please cite it as below.
authors:
- family-names: "Edler"
given-names: "Daniel"
orcid: "https://orcid.org/0000-0001-5420-0591"
- family-names: "Holmgren"
given-names: "Anton"
orcid: "https://orcid.org/0000-0001-5859-4073"
- family-names: "Rosvall"
given-names: "Martin"
orcid: "https://orcid.org/0000-0002-7181-9940"
title: "The MapEquation software package"
version: 2.9.2
url: "https://mapequation.org"
- family-names: Edler
given-names: Daniel
orcid: https://orcid.org/0000-0001-5420-0591
- family-names: Holmgren
given-names: Anton
orcid: https://orcid.org/0000-0001-5859-4073
- family-names: Rosvall
given-names: Martin
orcid: https://orcid.org/0000-0002-7181-9940
title: The MapEquation software package
version: 2.10.0
url: https://mapequation.org
2 changes: 1 addition & 1 deletion interfaces/python/src/infomap/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.9.2" # x-release-please-version
__version__ = "2.10.0" # x-release-please-version
__description__ = "Infomap network clustering algorithm"
__author__ = "mapequation"
__email__ = "mapequation@gmail.com"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mapequation/infomap",
"version": "2.9.2",
"version": "2.10.0",
"description": "Infomap network clustering algorithm",
"browser": "./index.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace infomap {

const char* const INFOMAP_VERSION = "2.9.2"; // x-release-please-version
const char* const INFOMAP_VERSION = "2.10.0"; // x-release-please-version

}

Expand Down
Loading