Bump version and clarify docs

This commit is contained in:
Alex Burlacu 2023-07-31 21:33:28 +03:00
parent e467c05fb4
commit 80ef359f45
3 changed files with 7 additions and 4 deletions

View File

@ -1886,7 +1886,8 @@ class Dataset(object):
Query list of dataset in the system
:param dataset_project: Specify dataset project name
:param partial_name: Specify partial match to a dataset name
:param partial_name: Specify partial match to a dataset name. This method supports regular expressions for name
matching (if you wish to match special characters and avoid any regex behaviour, use re.escape())
:param tags: Specify user tags
:param ids: List specific dataset based on IDs list
:param only_completed: If False, return datasets that are still in progress (uploading/edited etc.)

View File

@ -971,7 +971,8 @@ class Task(_Task):
Use a list of strings for multiple optional project names.
:param str task_name: The full name or partial name of the Tasks to match within the specified
``project_name`` (or all projects if ``project_name`` is ``None``).
This method supports regular expressions for name matching. (Optional)
This method supports regular expressions for name matching (if you wish to match special characters and
avoid any regex behaviour, use re.escape()). (Optional)
To match an exact task name (i.e. not partial matching),
add ^/$ at the beginning/end of the string, for example: "^exact_task_name_here$"
:param list tags: Filter based on the requested list of tags (strings) (Task must have all the listed tags)
@ -1020,7 +1021,8 @@ class Task(_Task):
Use a list of strings for multiple optional project names.
:param str task_name: The full name or partial name of the Tasks to match within the specified
``project_name`` (or all projects if ``project_name`` is ``None``).
This method supports regular expressions for name matching. (Optional)
This method supports regular expressions for name matching (if you wish to match special characters and
avoid any regex behaviour, use re.escape()). (Optional)
:param str project_name: project name (str) the task belongs to (use None for all projects)
:param str task_name: task name (str) within the selected project
Return any partial match of task_name, regular expressions matching is also supported.

View File

@ -1 +1 @@
__version__ = '1.12.0'
__version__ = '1.12.1'