From 9e3cf1049f2ba0dbad5798a0c500cf1725d1c81f Mon Sep 17 00:00:00 2001 From: james hadfield Date: Mon, 1 Jul 2024 12:21:19 +1200 Subject: [PATCH] version bump to 2.56.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 ace50a784..1f4509b42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## version 2.56.0 - 2024/07/01 + + * We now use the reported confidence / entropy values to change the saturation of tips (circles) on the tree, which matches the behaviour seen for branches. If there is no (or very little) uncertainty in these nodes then the tips will appear the same as seen in previous versions of Auspice. ([#1796](https://github.com/nextstrain/auspice/pull/1796)) * We no longer show the "second tree" sidebar dropdown when there are no available options. The possible options are defined by [the charon/getAvailable API](https://docs.nextstrain.org/projects/auspice/en/stable/server/api.html) response and as such vary depending on the server in use. ([#1795](https://github.com/nextstrain/auspice/pull/1795)) diff --git a/package-lock.json b/package-lock.json index df21f37af..0fce515bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auspice", - "version": "2.55.1", + "version": "2.56.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auspice", - "version": "2.55.1", + "version": "2.56.0", "license": "AGPL-3.0-only", "dependencies": { "@babel/core": "^7.3.4", diff --git a/package.json b/package.json index 38ab39003..4f4597145 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auspice", - "version": "2.55.1", + "version": "2.56.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 6f69f155d..b19113fd6 100644 --- a/src/version.js +++ b/src/version.js @@ -1,4 +1,4 @@ -const version = "2.55.1"; +const version = "2.56.0"; module.exports = { version