From 2d7981f7c4bfb84ae0759ac21019764581fea1cd Mon Sep 17 00:00:00 2001 From: PubChimps Date: Fri, 9 Dec 2022 10:44:20 -0800 Subject: [PATCH] bumping docs and userAgent for new release --- README.md | 8 ++++---- fivetran_provider/hooks/fivetran.py | 2 +- setup.cfg | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 75bdf87..500441e 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ pip install airflow-provider-fivetran In the Airflow user interface, configure a Connection for Fivetran. Most of the Connection config fields will be left blank. Configure the following fields: -* `Conn Id`: `fivetran` +* `Conn Id`: `fivetran_default` * `Conn Type`: `Fivetran` -* `Login`: Fivetran API Key -* `Password`: Fivetran API Secret +* `Fivetran API Key`: Your Fivetran API Key +* `Fivetran API Secret`: Your Fivetran API Secret Find the Fivetran API Key and Secret in the [Fivetran Account Settings](https://fivetran.com/account/settings), under the **API Config** section. See our documentation for more information on [Fivetran API Authentication](https://fivetran.com/docs/rest-api/getting-started#authentication). -The sensor and operator assume the `Conn Id` is set to `fivetran`, however if you are managing multipe Fivetran accounts, you can set this to anything you like. See the DAG in examples to see how to specify a custom `Conn Id`. +The sensor and operator assume the `Conn Id` is set to `fivetran_default`, however if you are managing multipe Fivetran accounts, you can set this to anything you like. See the DAG in examples to see how to specify a custom `Conn Id`. ## Modules diff --git a/fivetran_provider/hooks/fivetran.py b/fivetran_provider/hooks/fivetran.py index cd68a66..2f493c0 100644 --- a/fivetran_provider/hooks/fivetran.py +++ b/fivetran_provider/hooks/fivetran.py @@ -31,7 +31,7 @@ class FivetranHook(BaseHook): default_conn_name = "fivetran_default" conn_type = "fivetran" hook_name = "Fivetran" - api_user_agent = "airflow_provider_fivetran/1.1.2" + api_user_agent = "airflow_provider_fivetran/1.1.3" api_protocol = "https" api_host = "api.fivetran.com" api_path_connectors = "v1/connectors/" diff --git a/setup.cfg b/setup.cfg index d4b0843..abb91af 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = airflow-provider-fivetran -version = 1.1.2 +version = 1.1.3 description = A Fivetran provider for Apache Airflow long_description = file: README.md long_description_content_type = text/markdown