From cb9279406e569c0592b30bf88052ef150e974e1d Mon Sep 17 00:00:00 2001 From: mgcam Date: Fri, 12 Apr 2024 10:47:56 +0100 Subject: [PATCH] Updated app version to 2.1.0 Updated the Copyright year. Added release instructions to README. Updated the CHANGELOG. --- CHANGELOG.md | 2 ++ README.md | 11 +++++++++++ frontend/package.json | 2 +- frontend/src/App.vue | 2 +- lang_qc/__init__.py | 2 +- pyproject.toml | 2 +- 6 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92e18c3f..dda3f31f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.1.0] - 2024-04-15 + ### Changed * To simplify object instantiation and fields' assignment for some diff --git a/README.md b/README.md index 9850d42f..292ec96c 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,17 @@ subjects other than development, testing and deployment. - [The QC process](docs/qc_process.md) - [The QC database schema](docs/qc_schema_explained.md) +## Prepare for release + +Prior to merging to the master branch: + +- Update CHANGELOG.md +- Update the hardcoded version in + - frontend/package.json + - lang_qc/__init__.py + - pyproject.toml +- If needed, update the Copyright year in frontend/src/App.vue + ## Install and run locally You can install the package with `pip install .` from the repository's root. diff --git a/frontend/package.json b/frontend/package.json index 5847f854..dabf760d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "npg-longue-vue", - "version": "2.0.0", + "version": "2.1.0", "description": "UI for LangQC", "author": "Kieron Taylor ", "license": "GPL-3.0-or-later", diff --git a/frontend/src/App.vue b/frontend/src/App.vue index d0d30300..ca6dfc25 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -122,7 +122,7 @@ function notInWellsByRun() { - Copyright Genome Research Ltd 2023 - client version: {{ VERSION.replace(/['"]+/g) + (DEVMODE ? "+DEV" : "") + Copyright Genome Research Ltd 2023, 2024 - client version: {{ VERSION.replace(/['"]+/g) + (DEVMODE ? "+DEV" : "") }} diff --git a/lang_qc/__init__.py b/lang_qc/__init__.py index 8c0d5d5b..9aa3f903 100644 --- a/lang_qc/__init__.py +++ b/lang_qc/__init__.py @@ -1 +1 @@ -__version__ = "2.0.0" +__version__ = "2.1.0" diff --git a/pyproject.toml b/pyproject.toml index 029c3974..95273614 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "npg_langqc" packages = [ { include = "lang_qc" }, ] -version = "2.0.0" +version = "2.1.0" description = "FastAPI application for Long Read QC" authors = ["Adam Blanchet", "Marina Gourtovaia ", "Kieron Taylor "] license = "GPL-3.0-or-later"