diff --git a/CHANGELOG.md b/CHANGELOG.md index b26c91f..126a057 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.3.0] - 2024-07-30 + +### Added + +* New endpoint for fetching statistics about a library pool +* Pool composition table added to the QC View for any well. Folded away by default +* Barcode names from MLWH are now available to front and back end code + +### Fixed + +* Well detail fetching errors now produce a visible warning that was previously lost + ## [2.2.0] - 2024-06-11 ### Added diff --git a/frontend/package.json b/frontend/package.json index b0b48f4..ff80aab 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "npg-longue-vue", - "version": "2.2.0", + "version": "2.3.0", "description": "UI for LangQC", "author": "Kieron Taylor ", "license": "GPL-3.0-or-later", diff --git a/lang_qc/__init__.py b/lang_qc/__init__.py index 8a124bf..55e4709 100644 --- a/lang_qc/__init__.py +++ b/lang_qc/__init__.py @@ -1 +1 @@ -__version__ = "2.2.0" +__version__ = "2.3.0" diff --git a/pyproject.toml b/pyproject.toml index 92929b4..54ba904 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "npg_langqc" packages = [ { include = "lang_qc" }, ] -version = "2.2.0" +version = "2.3.0" description = "FastAPI application for Long Read QC" authors = ["Adam Blanchet", "Marina Gourtovaia ", "Kieron Taylor "] license = "GPL-3.0-or-later"