From ec6a8f91bbc4908fcdc83036219ee42aba1522ee Mon Sep 17 00:00:00 2001 From: Etienne Boileau Date: Wed, 25 Sep 2024 18:06:26 +0200 Subject: [PATCH] MNT bump to 3.0.0 --- CHANGELOG.md | 18 +++++++++++++++--- server/src/scimodom/__init__.py | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed1441c..a6352de9 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,16 +3,28 @@ All notable changes to scimodom will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/), and this project adheres to [Semantic Versioning](http://semver.org/). -## [Release candidate] - started 2024-08-15 +## [Release candidate] - started 2024-09-25 + +## [3.0.0] 2024-09-25 ### Added -- Search table full export -- Search query modalities +- Search table full export (#151) +- Search query modalities (gene search) +- Link to Ensembl gene table (#140) +- Chart data caching, CLI-related utilities, and update on import + +### Changed + +- Search API +- Minor changes to the web interface (info button) +- Link to matched Ensembl version (110) ### Fixed - Missing query for chromosome end +- Annotation: missing records (#141) +- Annotation: feature, gene, and biotype association (#139) ## [2.0.6] 2024-08-15 diff --git a/server/src/scimodom/__init__.py b/server/src/scimodom/__init__.py index 5fc637b2..ec5b727e 100644 --- a/server/src/scimodom/__init__.py +++ b/server/src/scimodom/__init__.py @@ -1,2 +1,2 @@ -__version_info__ = ("2", "0", "6") +__version_info__ = ("3", "0", "0") __version__ = ".".join(__version_info__)