From ba3c5cc1a89ef834a39ff50aeb1fa23fc4437f13 Mon Sep 17 00:00:00 2001 From: Daniel Edler Date: Thu, 20 Jun 2024 21:55:23 +0200 Subject: [PATCH] chore(release): 2.8.0 --- CHANGELOG.md | 13 +++++++++++++ CITATION.cff | 6 +++--- package-lock.json | 6 +++--- package.json | 4 ++-- src/version.h | 2 +- 5 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3c4d977..aed8bada 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.8.0](https://github.com/mapequation/infomap/compare/v2.7.1...v2.8.0) (2024-06-20) + + +### Features + +* Add state network from NetworkX graph ([#344](https://github.com/mapequation/infomap/issues/344)) ([1467768](https://github.com/mapequation/infomap/commit/1467768d8850860977c05142c0d3d4c3aaf5eea0)) + + +### Bug Fixes + +* **py:** Use inter/intra multilayer format by default ([0ed9af3](https://github.com/mapequation/infomap/commit/0ed9af30af19cbede0317f71ef44a5b5193661fc)) +* Upgrade github actions dependencies ([ffe0fe2](https://github.com/mapequation/infomap/commit/ffe0fe21f98e70a918fdd45157f960eb770c153d)) + ### [2.7.1](https://github.com/mapequation/infomap/compare/v2.7.0...v2.7.1) (2023-04-25) diff --git a/CITATION.cff b/CITATION.cff index d119509f..4acf57c2 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,4 +1,4 @@ -cff-version: 2.7.1 +cff-version: 2.8.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.7.1 -date-released: 2023-04-25 +version: 2.8.0 +date-released: 2024-06-20 url: "https://mapequation.org" diff --git a/package-lock.json b/package-lock.json index 3ef42fdb..a88252e1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mapequation/infomap", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@mapequation/infomap", - "version": "2.7.1", + "version": "2.8.0", "license": "GPL-3.0-or-later", "devDependencies": { "arraybuffer-loader": "^1.0.8", @@ -6248,4 +6248,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 62a7bf26..56fa9906 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mapequation/infomap", - "version": "2.7.1", + "version": "2.8.0", "description": "Infomap network clustering algorithm", "browser": "index.js", "publishConfig": { @@ -89,4 +89,4 @@ "Programming Language :: Python :: 3" ] } -} \ No newline at end of file +} diff --git a/src/version.h b/src/version.h index 30f5e6fd..0671d201 100644 --- a/src/version.h +++ b/src/version.h @@ -12,7 +12,7 @@ namespace infomap { -const char* const INFOMAP_VERSION = "2.7.1"; +const char* const INFOMAP_VERSION = "2.8.0"; }