diff --git a/CHANGELOG.md b/CHANGELOG.md index 17c39a272..3c4049845 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## version 2.47.0 - 2023/08/21 + + * Entropy panel now supports more complex genome architectures and has improved styling. The JSON schema has been extended to allow segmented CDSs, which allows us to represent CDSs such as those which wrap the origin (common in HepB), and those with ribosomal slippage (nCoV, EBOV). The visual representation of CDSs diff --git a/package-lock.json b/package-lock.json index c863395ad..da1c23617 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auspice", - "version": "2.46.1", + "version": "2.47.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auspice", - "version": "2.46.1", + "version": "2.47.0", "license": "AGPL-3.0-only", "dependencies": { "@babel/core": "^7.3.4", diff --git a/package.json b/package.json index e228cb357..a1612688b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auspice", - "version": "2.46.1", + "version": "2.47.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 afe008899..3bcbda4e6 100644 --- a/src/version.js +++ b/src/version.js @@ -1,4 +1,4 @@ -const version = "2.46.1"; +const version = "2.47.0"; module.exports = { version