diff --git a/CHANGELOG.md b/CHANGELOG.md index 17339282b..df76335aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## version 2.46.0 - 2023/05/15 + + * Fixed a bug where narratives with multiple datasets that had measurements panels would error when switching datasets. ([#1603](https://github.com/nextstrain/auspice/issues/1603)) _There have been a number of internal changes with this release, most of which should not result in any different behavior while using Auspice._ diff --git a/package-lock.json b/package-lock.json index f31195218..83fde1cdc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auspice", - "version": "2.45.2", + "version": "2.46.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auspice", - "version": "2.45.2", + "version": "2.46.0", "license": "AGPL-3.0-only", "dependencies": { "@babel/core": "^7.3.4", diff --git a/package.json b/package.json index 9295eaacf..144d4a22a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auspice", - "version": "2.45.2", + "version": "2.46.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 63fb39878..c068a0260 100644 --- a/src/version.js +++ b/src/version.js @@ -1,4 +1,4 @@ -const version = "2.45.2"; +const version = "2.46.0"; module.exports = { version