diff --git a/CHANGELOG.md b/CHANGELOG.md index ac3c17e..7b0b860 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,30 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] + +## [1.4.1] - 2023-08-23 + +### Added + +* Display of the release version in UI. +* A constraint for `Claimed` QC state, made it applicable for `sequencing` + QC type only. + +### Changed + +* Split the code for creating and updating QC sates into PacBio-specific + and sequencing platform independent. Converted all methods to self- + contained functions, discontinued use of classes where no object state + has to be maintained. + +### Fixed + +* UI - ensured uniqueness of the row key for the well table. +* A bug in creating a new product record in the LangQC database. + The bug affected records with undefined value of the plate number, + which was pushed to the database as a `'None'` string instead of `NULL`. + ## [1.4.0] - 2023-08-16 ### Added diff --git a/frontend/package.json b/frontend/package.json index 775c487..0c3e7e2 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "npg-longue-vue", - "version": "1.4.0", + "version": "1.4.1", "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 3e8d9f9..bf25615 100644 --- a/lang_qc/__init__.py +++ b/lang_qc/__init__.py @@ -1 +1 @@ -__version__ = "1.4.0" +__version__ = "1.4.1" diff --git a/pyproject.toml b/pyproject.toml index 8726132..9c96d7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "npg_langqc" packages = [ { include = "lang_qc" }, ] -version = "1.4.0" +version = "1.4.1" description = "FastAPI application for Long Read QC" authors = ["Adam Blanchet", "Marina Gourtovaia ", "Kieron Taylor "] license = "GPL-3.0-or-later"