Skip to content

Commit

Permalink
Merge pull request #3302 from antgonza/2023.06
Browse files Browse the repository at this point in the history
2023.06
  • Loading branch information
charles-cowart authored Jun 14, 2023
2 parents d3d3966 + 6d8b9bf commit 9c70efb
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Qiita changelog

Version 2023.06
---------------

* EBI-ENA submissions require a sample metadata column: **geographic location (country and/or sea)**, Qiita will automatically rename **country** to satisfy this requirement.
* The qp-knight-lab-processing was [refactored for better performance and testing](https://github.com/qiita-spots/qp-knight-lab-processing/pull/60); mainly contributed by @charles-cowart.
* Admin Sample Validation now uses tube_id; mainly contributed by @CatFish47.
* Registered users cannot start sample deletion jobs within public studies.
* The qp-knight-lab-processing now links the SPP job to the preparation it creates and links the created files to that preparation. Note that no files are being moved to the upload folder.
* Fixed the following issues [#3227](https://github.com/qiita-spots/qiita/issues/3227), [#3279](https://github.com/qiita-spots/qiita/issues/3279).


Version 2023.05
---------------

Expand Down
2 changes: 1 addition & 1 deletion qiita_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------

__version__ = "2023.05"
__version__ = "2023.06"
2 changes: 1 addition & 1 deletion qiita_db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from . import user
from . import processing_job

__version__ = "2023.05"
__version__ = "2023.06"

__all__ = ["analysis", "artifact", "archive", "base", "commands",
"environment_manager", "exceptions", "investigation", "logger",
Expand Down
2 changes: 1 addition & 1 deletion qiita_pet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------

__version__ = "2023.05"
__version__ = "2023.06"
2 changes: 1 addition & 1 deletion qiita_pet/handlers/api_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from .user import (user_jobs_get_req)
from .util import check_access, check_fp

__version__ = "2023.05"
__version__ = "2023.06"

__all__ = ['prep_template_summary_get_req', 'data_types_get_req',
'study_get_req', 'sample_template_filepaths_get_req',
Expand Down
2 changes: 1 addition & 1 deletion qiita_ware/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------

__version__ = "2023.05"
__version__ = "2023.06"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup
from glob import glob

__version__ = "2023.05"
__version__ = "2023.06"


classes = """
Expand Down

0 comments on commit 9c70efb

Please sign in to comment.