diff --git a/CHANGELOG.md b/CHANGELOG.md index 35d366fc6..f8a72ead3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## version 2.57.0 - 2024/08/30 + + * Remove hardcoded color scale for LBI ([#1842](https://github.com/nextstrain/auspice/pull/1842)) * Any `node_attr` in the tree can be used as a tip label, as well as the special-cases of strain-name and "none". Previously we only allowed valid colorings. diff --git a/package-lock.json b/package-lock.json index b8a83351a..7ca2bf9dd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auspice", - "version": "2.56.1", + "version": "2.57.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auspice", - "version": "2.56.1", + "version": "2.57.0", "license": "AGPL-3.0-only", "dependencies": { "@babel/core": "^7.3.4", diff --git a/package.json b/package.json index 1407b5b7b..eac296bb9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auspice", - "version": "2.56.1", + "version": "2.57.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 af12c8d72..e0b8e441e 100644 --- a/src/version.js +++ b/src/version.js @@ -1,4 +1,4 @@ -const version = "2.56.1"; +const version = "2.57.0"; module.exports = { version