From 40d7b854255cc29f1746b2829716b815ea663f3f Mon Sep 17 00:00:00 2001 From: james hadfield Date: Thu, 14 Nov 2024 09:55:07 +1300 Subject: [PATCH] version bump to 2.61.0 for release --- CHANGELOG.md | 3 +++ package-lock.json | 4 ++-- package.json | 2 +- src/version.js | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3d2aea4b..1bffdc8d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## version 2.61.0 - 2024/11/14 + + * Error boundaries added for all panels (tree, map etc) so that in the case of uncaught errors we'll now show an error message rather than crashing Auspice. Hopefully these are never observed in production! ([#1897](https://github.com/nextstrain/auspice/pull/1897)) * Bugfix: Auspice would crash in some situations when the entropy panel was scrolled back into view (bug introduced in v2.60.0). ([#1898](https://github.com/nextstrain/auspice/pull/1898)) diff --git a/package-lock.json b/package-lock.json index 878e94e28..fe064567f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auspice", - "version": "2.60.0", + "version": "2.61.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auspice", - "version": "2.60.0", + "version": "2.61.0", "license": "AGPL-3.0-only", "dependencies": { "@babel/core": "^7.3.4", diff --git a/package.json b/package.json index 8bbbccbc6..d3c766b04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auspice", - "version": "2.60.0", + "version": "2.61.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 61d661eef..97a0fdbe3 100644 --- a/src/version.js +++ b/src/version.js @@ -1,4 +1,4 @@ -const version = "2.60.0"; +const version = "2.61.0"; module.exports = { version