Skip to content

Commit

Permalink
Release 1.11.0 (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
bharanidharan14 authored Oct 21, 2022
1 parent cf75acb commit 6659501
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
Changelog
=========

1.11.0 (2022-10-21)
-------------------

New Operators
"""""""""""""

This release adds the following 3 new async operators:

.. list-table::
:header-rows: 1

* - Operator Class
- Import Path
- Example DAG

* - ``SageMakerProcessingOperatorAsync``
- .. code-block:: python

from astronomer.providers.amazon.aws.operators.sagemaker import SageMakerProcessingOperatorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/amazon/aws/example_dags/example_sagemaker.py>`__

* - ``SageMakerTrainingOperatorAsync``
- .. code-block:: python

from astronomer.providers.amazon.aws.operators.sagemaker import SageMakerTrainingOperatorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/amazon/aws/example_dags/example_sagemaker.py>`__

* - ``SageMakerTransformOperatorAsync``
- .. code-block:: python

from astronomer.providers.amazon.aws.operators.sagemaker import SageMakerTransformOperatorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/amazon/aws/example_dags/example_sagemaker.py>`__



1.10.0 (2022-09-30)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion astronomer/providers/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def get_provider_info() -> Dict[str, Any]:
"package-name": "astronomer-providers",
"name": "Astronomer Providers",
"description": "Apache Airflow Providers containing Deferrable Operators & Sensors from Astronomer",
"versions": "1.11.0.dev1",
"versions": "1.11.0",
# Optional.
"hook-class-names": [],
"extra-links": [],
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author = "Astronomer Inc."

# The full version, including alpha/beta/rc tags
release = "1.11.0.dev1"
release = "1.11.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = astronomer-providers
version = 1.11.0.dev1
version = 1.11.0
url = https://github.com/astronomer/astronomer-providers/
author = Astronomer
author_email = [email protected]
Expand Down

0 comments on commit 6659501

Please sign in to comment.