diff --git a/CHANGELOG.md b/CHANGELOG.md index da68ae0..bc70de2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +0.0.8 +------------------- +* Add `success_on_reasons` param to `WaitAppBatchSensor` init +* Format all docs according to sphinx standard + 0.0.7 ------------------- * Add `WaitAppBatchSensor` for waiting app batches diff --git a/setup.py b/setup.py index 87c196e..d879e42 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='airflow-provider-toloka', packages=['toloka_provider', *(f'toloka_provider.{package}' for package in find_packages('toloka_provider'))], - version='0.0.7', + version='0.0.8', description='A Toloka provider for Apache Airflow', long_description=readme, long_description_content_type='text/markdown', @@ -33,6 +33,7 @@ classifiers=[ 'Development Status :: 4 - Beta', 'Framework :: Apache Airflow', + 'Framework :: Apache Airflow :: Provider', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: Apache Software License', diff --git a/toloka_provider/__init__.py b/toloka_provider/__init__.py index 2c2bb0b..02bf0a0 100644 --- a/toloka_provider/__init__.py +++ b/toloka_provider/__init__.py @@ -9,5 +9,5 @@ def get_provider_info(): 'hook-class-name': 'toloka_provider.hooks.toloka.TolokaHook', }, ], - 'version': ['0.0.7'], + 'version': ['0.0.8'], } diff --git a/toloka_provider/hooks/toloka.py b/toloka_provider/hooks/toloka.py index 0c9017d..e37ba6a 100644 --- a/toloka_provider/hooks/toloka.py +++ b/toloka_provider/hooks/toloka.py @@ -14,9 +14,9 @@ class TolokaHook(BaseHook): """ Hook to interact with Toloka. - Performs a connection to Toloka and retrieves client. + Performs a connection to Toloka and retrieves client. - :param toloka_conn_id: Airflow Connection with OAuth token for Toloka. + :param toloka_conn_id: Airflow Connection with OAuth token for Toloka. You can learn more about how to get it [here](https://toloka.ai/docs/api/concepts/access.html#access__token). """