diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b0419e34..34b0e89bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## version 2.58.0 - 2024/09/12 + + * Fix bug where drag-and-drop metadata columns were no longer included as tip labels ([#1845](https://github.com/nextstrain/auspice/pull/1845)) * Fixed a bug where internal node names were sometimes omitted from the branch info modal (arrived at via shift-clicking on a branch). They are now always displayed irrespective of the selected tip label. diff --git a/package-lock.json b/package-lock.json index 7ca2bf9dd..7c50f64d2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auspice", - "version": "2.57.0", + "version": "2.58.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auspice", - "version": "2.57.0", + "version": "2.58.0", "license": "AGPL-3.0-only", "dependencies": { "@babel/core": "^7.3.4", diff --git a/package.json b/package.json index eac296bb9..c244ebeca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auspice", - "version": "2.57.0", + "version": "2.58.0", "description": "Web app for visualizing pathogen evolution", "author": "James Hadfield, Trevor Bedford and Richard Neher", "license": "AGPL-3.0-only", diff --git a/src/version.js b/src/version.js index e0b8e441e..2a858e1c0 100644 --- a/src/version.js +++ b/src/version.js @@ -1,4 +1,4 @@ -const version = "2.57.0"; +const version = "2.58.0"; module.exports = { version