From 9005ad9cda68b57062136bb1fd8b544a2e05e6f1 Mon Sep 17 00:00:00 2001 From: Daniel Edler Date: Tue, 4 Apr 2023 11:21:35 +0200 Subject: [PATCH] chore(release): 2.7.0 --- CHANGELOG.md | 13 +++++++++++++ CITATION.cff | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- src/version.h | 2 +- 5 files changed, 20 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56b6ac0d..edd2dc6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ 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.7.0](https://github.com/mapequation/infomap/compare/v2.6.1...v2.7.0) (2023-04-04) + + +### Features + +* Add flow model "precomputed" ([407dbe9](https://github.com/mapequation/infomap/commit/407dbe9592641bea7a4cac292a7d25df308644ca)) + + +### Bug Fixes + +* Do not add links with zero weight ([cc61b61](https://github.com/mapequation/infomap/commit/cc61b61db228e8a0b433d5bc55f0fedc540e1c0d)), closes [#324](https://github.com/mapequation/infomap/issues/324) +* **python:** Typo in assign_to_neighbouring_module ([c644e80](https://github.com/mapequation/infomap/commit/c644e80d1717cc28c6247b470e4f1c6eb2d4a420)) + ### [2.6.1](https://github.com/mapequation/infomap/compare/v2.6.0...v2.6.1) (2022-10-31) diff --git a/CITATION.cff b/CITATION.cff index 6e434d2e..944be8fb 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,4 +1,4 @@ -cff-version: 2.6.1 +cff-version: 2.7.0 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.1 -date-released: 2022-10-31 +version: 2.7.0 +date-released: 2023-04-04 url: "https://mapequation.org" diff --git a/package-lock.json b/package-lock.json index bc0de166..70b18645 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mapequation/infomap", - "version": "2.6.1", + "version": "2.7.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@mapequation/infomap", - "version": "2.6.1", + "version": "2.7.0", "license": "AGPL-3.0-or-later", "devDependencies": { "arraybuffer-loader": "^1.0.8", diff --git a/package.json b/package.json index d1255f98..057ca70e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mapequation/infomap", - "version": "2.6.1", + "version": "2.7.0", "description": "Infomap network clustering algorithm", "browser": "index.js", "publishConfig": { diff --git a/src/version.h b/src/version.h index 1b7b51a9..027cc93f 100644 --- a/src/version.h +++ b/src/version.h @@ -12,7 +12,7 @@ namespace infomap { -const char* const INFOMAP_VERSION = "2.6.1"; +const char* const INFOMAP_VERSION = "2.7.0"; }