From 47de1cb4aff3a9b274a11a84b4b3959b11c81300 Mon Sep 17 00:00:00 2001 From: Andrew Maguire Date: Mon, 29 May 2023 17:35:49 +0100 Subject: [PATCH] 0.0.21 --- .astro-registry.yaml | 8 ++++---- airflow_anomaly_detection/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.astro-registry.yaml b/.astro-registry.yaml index f9164d8..96a7923 100644 --- a/.astro-registry.yaml +++ b/.astro-registry.yaml @@ -19,9 +19,9 @@ docs_url: https://github.com/andrewm4894/airflow-provider-anomaly-detection/blob # value should be "sample_provider.hooks.sample_hook.SampleHook". operators: - - module: airflow_anomaly_detection.operators.metric_batch_ingest_operator.MetricBatchIngestOperator - - module: airflow_anomaly_detection.operators.metric_batch_train_operator.MetricBatchTrainOperator - - module: airflow_anomaly_detection.operators.metric_batch_train_operator.MetricBatchScoreOperator - - module: airflow_anomaly_detection.operators.metric_batch_alert_operator.MetricBatchAlertOperator + - module: airflow_anomaly_detection.operators.bigquery_metric_batch_ingest_operator.BigQueryMetricBatchIngestOperator + - module: airflow_anomaly_detection.operators.bigquery_metric_batch_train_operator.BigQueryMetricBatchTrainOperator + - module: airflow_anomaly_detection.operators.bigquery_metric_batch_train_operator.BigQueryMetricBatchScoreOperator + - module: airflow_anomaly_detection.operators.bigquery_metric_batch_alert_operator.BigQueryMetricBatchAlertOperator - module: airflow_anomaly_detection.operators.metric_batch_alert_operator.MetricBatchEmailNotifyOperator diff --git a/airflow_anomaly_detection/__init__.py b/airflow_anomaly_detection/__init__.py index 370316f..62c905e 100644 --- a/airflow_anomaly_detection/__init__.py +++ b/airflow_anomaly_detection/__init__.py @@ -1,5 +1,5 @@ -__version__ = "0.0.20" +__version__ = "0.0.21" def get_provider_info(): return { diff --git a/pyproject.toml b/pyproject.toml index df2fec2..605cab2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "airflow-provider-anomaly-detection" -version = "0.0.20" +version = "0.0.21" authors = [ { name="andrewm4894", email="andrewm4894@gmail.com" }, ]