diff --git a/CHANGELOG.md b/CHANGELOG.md index 6220c093b..2b80c055c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## version 2.60.0 - 2024/11/07 + + * Performance improvement: We no longer attempt to animate actions on trees with over 4000 tips which results in more responsive interactions. ([#1880](https://github.com/nextstrain/auspice/pull/1880)) * Performance improvement: We no longer recompute the entropy data (which can be expensive) when the entropy panel is toggled off or off-screen. ([#1879](https://github.com/nextstrain/auspice/pull/1879)) * Bugfix: narrative slide changes which removed a filter would not work as expected in some cases ([#1883](https://github.com/nextstrain/auspice/pull/1883)) diff --git a/package-lock.json b/package-lock.json index bf1d69abd..141c34bdb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auspice", - "version": "2.59.1", + "version": "2.60.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auspice", - "version": "2.59.1", + "version": "2.60.0", "license": "AGPL-3.0-only", "dependencies": { "@babel/core": "^7.3.4", diff --git a/package.json b/package.json index a7eae432c..31c79dd1e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auspice", - "version": "2.59.1", + "version": "2.60.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 eb880a450..61d661eef 100644 --- a/src/version.js +++ b/src/version.js @@ -1,4 +1,4 @@ -const version = "2.59.1"; +const version = "2.60.0"; module.exports = { version