Skip to content

Commit 3b197b3

Browse files
committed
2024.10
1 parent 8fcd815 commit 3b197b3

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

CHANGELOG.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
# Qiita changelog
22

3-
Version 2024.09
3+
Version 2024.10
44
---------------
55

6-
Deployed on Octuber 2nd, 2024
6+
Deployed on October 14th, 2024
77

88
* Added update_resource_allocation_redis and companion code, so resource allocations summaries are available for review. Thank you @Gossty!
99
* Now is possible to have default workflows with only one step.
1010
* `qiita_client.update_job_step` now accepts an ignore_error optional parameter. Thank you @charles-cowart!
1111
* Initial changes in `qiita_client` to have more accurate variable names: `QIITA_SERVER_CERT` -> `QIITA_ROOTCA_CERT`. Thank you @charles-cowart!
1212
* Added `get_artifact_html_summary` to `qiita_client` to retrieve the summary file of an artifact.
1313
* Re-added github actions to `https://github.com/qiita-spots/qiita_client`.
14-
* `Woltka v0.1.6, paired-end` superseded `Woltka v0.1.6` in `qp-woltka`; [more information](https://qiita.ucsd.edu/static/doc/html/processingdata/woltka_pairedend.html). Thank you to @qiyunzhu for the benchmarks!
14+
* `SortMeRNA v4.3.7` superseded `Sortmerna v2.1b`, which relies on Silva 138 and now produced even mates. Thank you @ekopylova and @biocodz for the support.
15+
* `Remove SynDNA reads` superseded `SynDNA Woltka`, which now generates even mates.
16+
* `Woltka v0.1.7, paired-end` superseded `Woltka v0.1.6` in `qp-woltka`; [more information](https://qiita.ucsd.edu/static/doc/html/processingdata/woltka_pairedend.html). Thank you to @qiyunzhu for the benchmarks!
1517
* Other general fixes, like [#3424](https://github.com/qiita-spots/qiita/pull/3424), [#3425](https://github.com/qiita-spots/qiita/pull/3425).
1618

1719

qiita_core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# The full license is in the file LICENSE, distributed with this software.
77
# -----------------------------------------------------------------------------
88

9-
__version__ = "2024.09"
9+
__version__ = "2024.10"

qiita_db/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from . import user
2828
from . import processing_job
2929

30-
__version__ = "2024.09"
30+
__version__ = "2024.10"
3131

3232
__all__ = ["analysis", "artifact", "archive", "base", "commands",
3333
"environment_manager", "exceptions", "investigation", "logger",

qiita_pet/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# The full license is in the file LICENSE, distributed with this software.
77
# -----------------------------------------------------------------------------
88

9-
__version__ = "2024.09"
9+
__version__ = "2024.10"

qiita_pet/handlers/api_proxy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from .user import (user_jobs_get_req)
3939
from .util import check_access, check_fp
4040

41-
__version__ = "2024.09"
41+
__version__ = "2024.10"
4242

4343
__all__ = ['prep_template_summary_get_req', 'data_types_get_req',
4444
'study_get_req', 'sample_template_filepaths_get_req',

qiita_pet/support_files/doc/source/faq.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ the creation of the analysis or at any point within each individual analysis pag
423423

424424
You can add the reservation string to the analysis at the time of creation (bottom of the creation
425425
page), or the analysis page via the reservation button (top right). Note that once the reservation
426-
time finished, your jobs will fail as the reservation will no longer exist so you will need to
426+
time finishes, your jobs will fail as the reservation will no longer exist so you will need to
427427
remove it - we suggest doing this before submitting new jobs.
428428

429429
How to cite Qiita?

qiita_ware/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# The full license is in the file LICENSE, distributed with this software.
77
# -----------------------------------------------------------------------------
88

9-
__version__ = "2024.09"
9+
__version__ = "2024.10"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from setuptools import setup
1111
from glob import glob
1212

13-
__version__ = "2024.09"
13+
__version__ = "2024.10"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)