Skip to content

Commit ccf7b4a

Browse files
author
Anton Eriksson
committed
chore(release): 2.5.0
1 parent 1131e84 commit ccf7b4a

File tree

5 files changed

+26
-7
lines changed

5 files changed

+26
-7
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.5.0](https://github.com/mapequation/infomap/compare/v2.4.1...v2.5.0) (2022-06-07)
6+
7+
8+
### Features
9+
10+
* Output per-module codelength in json ([eae6650](https://github.com/mapequation/infomap/commit/eae6650c48dbf90a938d011f1c736794a786d7ef))
11+
* Print all trials using --print-all-trials ([e65bea8](https://github.com/mapequation/infomap/commit/e65bea86c21ebcabafb053e79306049e92429ca1)), closes [#298](https://github.com/mapequation/infomap/issues/298)
12+
* Write node metadata to json ([472b791](https://github.com/mapequation/infomap/commit/472b791742f0f692a0a4b06262b33165245f6f36))
13+
14+
15+
### Bug Fixes
16+
17+
* Constrain numerical arguments to sensible values ([174c99f](https://github.com/mapequation/infomap/commit/174c99fb56c4a50a2e11c37208bcec3e98ba4ab4))
18+
* Don't allow less than 1 trial ([18e97e2](https://github.com/mapequation/infomap/commit/18e97e21d76e7d27520eb2625c281031d72376d3))
19+
* Json multilevel modules for higher-order networks ([d020c7c](https://github.com/mapequation/infomap/commit/d020c7c444d1227cb26aa249f7cae5e7de5ecaa4)), closes [#266](https://github.com/mapequation/infomap/issues/266)
20+
* Only print all trials when running with more than 1 trial ([5f9d8b5](https://github.com/mapequation/infomap/commit/5f9d8b5e56ae348b142404f3f775ad526d396c55))
21+
* **python:** Fix elapsed running time ([1131e84](https://github.com/mapequation/infomap/commit/1131e845243d3053cceae5bdf069569b2856bc4a))
22+
* **python:** Replace MersenneTwister implementation with stdlib ([be3effd](https://github.com/mapequation/infomap/commit/be3effd9813a00892437c806b62cb8ee15387d3d))
23+
524
### [2.4.1](https://github.com/mapequation/infomap/compare/v2.4.0...v2.4.1) (2022-05-27)
625

726

CITATION.cff

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cff-version: 2.4.1
1+
cff-version: 2.5.0
22
message: "If you use this software, please cite it as below."
33
authors:
44
- family-names: "Edler"
@@ -11,6 +11,6 @@ authors:
1111
given-names: "Martin"
1212
orcid: "https://orcid.org/0000-0002-7181-9940"
1313
title: "The MapEquation software package"
14-
version: 2.4.1
15-
date-released: 2022-05-27
14+
version: 2.5.0
15+
date-released: 2022-06-07
1616
url: "https://mapequation.org"

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mapequation/infomap",
3-
"version": "2.4.1",
3+
"version": "2.5.0",
44
"description": "Infomap network clustering algorithm",
55
"browser": "index.js",
66
"publishConfig": {

src/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace infomap {
1414

15-
const char* const INFOMAP_VERSION = "2.4.1";
15+
const char* const INFOMAP_VERSION = "2.5.0";
1616

1717
}
1818

0 commit comments

Comments
 (0)