Skip to content

Commit ef571de

Browse files
Merge pull request #3138 from antgonza/2021.09
2021.09
2 parents 6a8a755 + 96314eb commit ef571de

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

CHANGELOG.md

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

3+
Version 2021.09
4+
---------------
5+
6+
* Double the number of possible connections for the Qiita database: 100 -> 200 simultaneous connections.
7+
* Added a new data type: "Job Output Folder" and artifact type definition: "job-output-folder" to initially support admin-only standalone commands in Qiita.
8+
* The study listing is now sorted by descending study id and then ascending number of available artifacts.
9+
* Removed old code from the Sample Information update method that regenerated all preparations in that study - this is no longer necessary as the per preparation sample information files are built on the fly.
10+
* Fixed a bug that did not copy the raw files when adding a new artifact via the CLI.
11+
* Fixed the following issues: [#3124](https://github.com/qiita-spots/qiita/issues/3124), [#3122](https://github.com/qiita-spots/qiita/issues/3122), [#3134](https://github.com/qiita-spots/qiita/issues/3134).
12+
13+
314
Version 2021.07
415
---------------
516

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__ = "2021.07"
9+
__version__ = "2021.09"

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__ = "2021.07"
30+
__version__ = "2021.09"
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__ = "2021.07"
9+
__version__ = "2021.09"

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__ = "2021.07"
41+
__version__ = "2021.09"
4242

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

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__ = "2021.07"
9+
__version__ = "2021.09"

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__ = "2021.07"
13+
__version__ = "2021.09"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)