diff --git a/CHANGELOG.md b/CHANGELOG.md index dda3f31..b26c91f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.2.0] - 2024-06-11 + +### Added + +* New endpoint added to support potential email notifications when QC states are finalised. `/products/qc?weeks={n}&seq_level={bool}&final={bool}`. It returns recent QC events + +### Fixed + +* Warehouse schema updated to match breaking change in pac_bio_product_metrics table + ## [2.1.0] - 2024-04-15 ### Changed @@ -77,7 +87,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). * The client side JavaScript dependency, element-plus, is pinned to version 2.4.4. In mid-January 2024 this was the highest version that worked with our code. The version expression we had "^2.3.7" - allowed for fetching the latest available version of this library. + allowed for fetching the latest available version of this library. ## [1.5.0] diff --git a/frontend/package.json b/frontend/package.json index dabf760..2c6e988 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "npg-longue-vue", - "version": "2.1.0", + "version": "2.2.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 9aa3f90..8a124bf 100644 --- a/lang_qc/__init__.py +++ b/lang_qc/__init__.py @@ -1 +1 @@ -__version__ = "2.1.0" +__version__ = "2.2.0" diff --git a/pyproject.toml b/pyproject.toml index 9527361..92929b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "npg_langqc" packages = [ { include = "lang_qc" }, ] -version = "2.1.0" +version = "2.2.0" description = "FastAPI application for Long Read QC" authors = ["Adam Blanchet", "Marina Gourtovaia ", "Kieron Taylor "] license = "GPL-3.0-or-later"