This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-0-test by this push:
     new 00610d5c281 Bump OL & Fab to hack around docker build error
00610d5c281 is described below

commit 00610d5c28153b30b5d3dc2260b71a255b68df5f
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri Apr 4 04:31:03 2025 +0530

    Bump OL & Fab to hack around docker build error
    
    https://github.com/apache/airflow/actions/runs/14254220890/job/39953714141
---
 airflow-core/pyproject.toml                                         | 2 +-
 providers/openlineage/README.rst                                    | 6 +++---
 providers/openlineage/provider.yaml                                 | 1 +
 providers/openlineage/pyproject.toml                                | 6 +++---
 providers/openlineage/src/airflow/providers/openlineage/__init__.py | 2 +-
 .../src/airflow/providers/openlineage/get_provider_info.py          | 1 +
 6 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/airflow-core/pyproject.toml b/airflow-core/pyproject.toml
index 3503be33566..36871ed410f 100644
--- a/airflow-core/pyproject.toml
+++ b/airflow-core/pyproject.toml
@@ -141,7 +141,7 @@ dependencies = [
     "apache-airflow-providers-common-io>=1.5.2",
     "apache-airflow-providers-common-sql>=1.24.1",
     "apache-airflow-providers-openlineage>=2.1.2",
-    "apache-airflow-providers-fab>=2.0.0",
+    "apache-airflow-providers-fab>=2.0.0rc2",
     "apache-airflow-providers-smtp>=2.0.1",
     "apache-airflow-providers-standard>=0.2.0",
     "apache-airflow-providers-sqlite>=4.0.1",
diff --git a/providers/openlineage/README.rst b/providers/openlineage/README.rst
index 42bc8f54365..ecd5d698286 100644
--- a/providers/openlineage/README.rst
+++ b/providers/openlineage/README.rst
@@ -23,7 +23,7 @@
 
 Package ``apache-airflow-providers-openlineage``
 
-Release: ``2.1.2``
+Release: ``2.1.3``
 
 
 `OpenLineage <https://openlineage.io/>`__
@@ -36,7 +36,7 @@ This is a provider package for ``openlineage`` provider. All 
classes for this pr
 are in ``airflow.providers.openlineage`` python package.
 
 You can find package information and changelog for the provider
-in the `documentation 
<https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.2/>`_.
+in the `documentation 
<https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/>`_.
 
 Installation
 ------------
@@ -82,4 +82,4 @@ Dependent package
 
==================================================================================================================
  =================
 
 The changelog for the provider package can be found in the
-`changelog 
<https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.2/changelog.html>`_.
+`changelog 
<https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/changelog.html>`_.
diff --git a/providers/openlineage/provider.yaml 
b/providers/openlineage/provider.yaml
index c4634e4d5a0..9e809f982ea 100644
--- a/providers/openlineage/provider.yaml
+++ b/providers/openlineage/provider.yaml
@@ -25,6 +25,7 @@ state: ready
 source-date-epoch: 1743477859
 # note that those versions are maintained by release manager - do not update 
them manually
 versions:
+  - 2.1.3
   - 2.1.2
   - 2.1.1
   - 2.1.0
diff --git a/providers/openlineage/pyproject.toml 
b/providers/openlineage/pyproject.toml
index 55b7e599c12..4bcde0d5224 100644
--- a/providers/openlineage/pyproject.toml
+++ b/providers/openlineage/pyproject.toml
@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
 
 [project]
 name = "apache-airflow-providers-openlineage"
-version = "2.1.2"
+version = "2.1.3"
 description = "Provider package apache-airflow-providers-openlineage for 
Apache Airflow"
 readme = "README.rst"
 authors = [
@@ -90,8 +90,8 @@ apache-airflow-providers-fab = {workspace = true}
 apache-airflow-providers-standard = {workspace = true}
 
 [project.urls]
-"Documentation" = 
"https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.2";
-"Changelog" = 
"https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.2/changelog.html";
+"Documentation" = 
"https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3";
+"Changelog" = 
"https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/changelog.html";
 "Bug Tracker" = "https://github.com/apache/airflow/issues";
 "Source Code" = "https://github.com/apache/airflow";
 "Slack Chat" = "https://s.apache.org/airflow-slack";
diff --git 
a/providers/openlineage/src/airflow/providers/openlineage/__init__.py 
b/providers/openlineage/src/airflow/providers/openlineage/__init__.py
index 9858939ce10..71bb3022d47 100644
--- a/providers/openlineage/src/airflow/providers/openlineage/__init__.py
+++ b/providers/openlineage/src/airflow/providers/openlineage/__init__.py
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
 
 __all__ = ["__version__"]
 
-__version__ = "2.1.2"
+__version__ = "2.1.3"
 
 if 
packaging.version.parse(packaging.version.parse(airflow_version).base_version) 
< packaging.version.parse(
     "2.9.0"
diff --git 
a/providers/openlineage/src/airflow/providers/openlineage/get_provider_info.py 
b/providers/openlineage/src/airflow/providers/openlineage/get_provider_info.py
index 39d15ea9ba4..8839b4eb394 100644
--- 
a/providers/openlineage/src/airflow/providers/openlineage/get_provider_info.py
+++ 
b/providers/openlineage/src/airflow/providers/openlineage/get_provider_info.py
@@ -29,6 +29,7 @@ def get_provider_info():
         "state": "ready",
         "source-date-epoch": 1743477859,
         "versions": [
+            "2.1.3",
             "2.1.2",
             "2.1.1",
             "2.1.0",

Reply via email to