Skip to content

Commit 7059d62

Browse files
committed
Release 1.1.1
Same as BioBlend v1.1.0, briefly released with wrong version number 1.0.1 on GitHub, PyPI and Bioconda.
1 parent bdf7a10 commit 7059d62

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
### BioBlend v1.1.0 - 2023-02-21
1+
### BioBlend v1.1.1 - 2023-02-21
2+
3+
* Same as BioBlend v1.1.0, briefly released with wrong version number 1.0.1 on
4+
GitHub, PyPI and Bioconda.
25

36
* Added support for Python 3.11. Added support for Galaxy release 23.0.
47

bioblend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
)
1414

1515
# Current version of the library
16-
__version__ = "1.0.1"
16+
__version__ = "1.1.1"
1717

1818
# default chunk size (in bytes) for reading remote data
1919
try:

bioblend/galaxy/libraries/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def get_folders(
287287
:rtype: list
288288
:return: list of dicts each containing basic information about a folder
289289
290-
.. versionchanged:: 1.1.0
290+
.. versionchanged:: 1.1.1
291291
Using the deprecated ``folder_id`` parameter now raises a
292292
``ValueError`` exception.
293293
"""
@@ -320,7 +320,7 @@ def get_libraries(
320320
:rtype: list
321321
:return: list of dicts each containing basic information about a library
322322
323-
.. versionchanged:: 1.1.0
323+
.. versionchanged:: 1.1.1
324324
Using the deprecated ``library_id`` parameter now raises a
325325
``ValueError`` exception.
326326
"""

bioblend/galaxy/tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def get_tools(
4848
4949
.. seealso:: bioblend.galaxy.toolshed.get_repositories()
5050
51-
.. versionchanged:: 1.1.0
51+
.. versionchanged:: 1.1.1
5252
Using the deprecated ``tool_id`` parameter now raises a
5353
``ValueError`` exception.
5454
"""

bioblend/galaxy/workflows/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def get_workflows(
4949
'name': 'Simple',
5050
'url': '/api/workflows/92c56938c2f9b315'}]
5151
52-
.. versionchanged:: 1.1.0
52+
.. versionchanged:: 1.1.1
5353
Using the deprecated ``workflow_id`` parameter now raises a
5454
``ValueError`` exception.
5555
"""

0 commit comments

Comments
 (0)