Skip to content

Commit 61ec92f

Browse files
committed
Prepare release for Standard Provider 1.4.1
This has a single bug fix - #53455
1 parent 50b3c33 commit 61ec92f

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

providers/standard/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
Package ``apache-airflow-providers-standard``
2525

26-
Release: ``1.4.0``
26+
Release: ``1.4.1``
2727

2828

2929
Airflow Standard Provider

providers/standard/docs/changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@
3535
Changelog
3636
---------
3737

38+
1.4.1
39+
.....
40+
41+
Bug Fixes
42+
~~~~~~~~~
43+
44+
* ``Fix sensor skipping in Airflow 3.x branching operators (#53455)``
45+
3846
1.4.0
3947
.....
4048

providers/standard/docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ apache-airflow-providers-standard package
6666
Airflow Standard Provider
6767

6868

69-
Release: 1.4.0
69+
Release: 1.4.1
7070

7171
Provider package
7272
----------------

providers/standard/provider.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ source-date-epoch: 1751474457
2727
# In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have
2828
# to be done in the same PR
2929
versions:
30+
- 1.4.1
3031
- 1.4.0
3132
- 1.3.0
3233
- 1.2.0

providers/standard/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
2525

2626
[project]
2727
name = "apache-airflow-providers-standard"
28-
version = "1.4.0"
28+
version = "1.4.1"
2929
description = "Provider package apache-airflow-providers-standard for Apache Airflow"
3030
readme = "README.rst"
3131
authors = [
@@ -94,8 +94,8 @@ apache-airflow-providers-common-sql = {workspace = true}
9494
apache-airflow-providers-standard = {workspace = true}
9595

9696
[project.urls]
97-
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-standard/1.4.0"
98-
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-standard/1.4.0/changelog.html"
97+
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-standard/1.4.1"
98+
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-standard/1.4.1/changelog.html"
9999
"Bug Tracker" = "https://github.com/apache/airflow/issues"
100100
"Source Code" = "https://github.com/apache/airflow"
101101
"Slack Chat" = "https://s.apache.org/airflow-slack"

providers/standard/src/airflow/providers/standard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
__all__ = ["__version__"]
3131

32-
__version__ = "1.4.0"
32+
__version__ = "1.4.1"
3333

3434
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
3535
"2.10.0"

0 commit comments

Comments
 (0)