diff --git a/CHANGELOG.md b/CHANGELOG.md index ecbb9252..56b6ac0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ 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. +### [2.6.1](https://github.com/mapequation/infomap/compare/v2.6.0...v2.6.1) (2022-10-31) + + +### Bug Fixes + +* Scale variable Markov time logarithmic as default ([#320](https://github.com/mapequation/infomap/issues/320)) ([3f40134](https://github.com/mapequation/infomap/commit/3f40134b0346586b9d051c3a2996a77500ba10d6)) +* Set num trials to 1 if no infomap ([be60a09](https://github.com/mapequation/infomap/commit/be60a09c785d8bee9ac885ebc92473494db368c1)) + ## [2.6.0](https://github.com/mapequation/infomap/compare/v2.5.0...v2.6.0) (2022-08-09) diff --git a/CITATION.cff b/CITATION.cff index b4590f58..5c60de78 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,4 +1,4 @@ -cff-version: 2.6.0 +cff-version: 2.6.1 message: "If you use this software, please cite it as below." authors: - family-names: "Edler" @@ -11,6 +11,6 @@ authors: given-names: "Martin" orcid: "https://orcid.org/0000-0002-7181-9940" title: "The MapEquation software package" -version: 2.6.0 -date-released: 2022-08-09 +version: 2.6.1 +date-released: 2022-10-31 url: "https://mapequation.org" diff --git a/package-lock.json b/package-lock.json index 34c6301f..bc0de166 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mapequation/infomap", - "version": "2.6.0", + "version": "2.6.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@mapequation/infomap", - "version": "2.6.0", + "version": "2.6.1", "license": "AGPL-3.0-or-later", "devDependencies": { "arraybuffer-loader": "^1.0.8", diff --git a/package.json b/package.json index 9d06991e..49b2935b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mapequation/infomap", - "version": "2.6.0", + "version": "2.6.1", "description": "Infomap network clustering algorithm", "browser": "index.js", "publishConfig": { diff --git a/src/version.h b/src/version.h index fd37ab77..daf0a253 100644 --- a/src/version.h +++ b/src/version.h @@ -12,7 +12,7 @@ namespace infomap { -const char* const INFOMAP_VERSION = "2.6.0"; +const char* const INFOMAP_VERSION = "2.6.1"; }