Skip to content

Commit 4a18c45

Browse files
committed
Update version to 3.0.1.dev0
1 parent 6677cc6 commit 4a18c45

File tree

16 files changed

+27
-27
lines changed

16 files changed

+27
-27
lines changed

airflow-core/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ classifiers = [
5959
]
6060

6161
# Version is defined in src/airflow/__init__.py and it is automatically synchronized by pre-commit
62-
version = "3.0.0"
62+
version = "3.0.1.dev0"
6363

6464
dependencies = [
6565
"a2wsgi>=1.10.8",

airflow-core/src/airflow/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# lib.) This is required by some IDEs to resolve the import paths.
2626
__path__ = __import__("pkgutil").extend_path(__path__, __name__) # type: ignore
2727

28-
__version__ = "3.0.0"
28+
__version__ = "3.0.1.dev0"
2929

3030
import os
3131
import sys

docker-stack-docs/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ Every time a new version of Airflow is released, the images are prepared in the
3131
[apache/airflow DockerHub](https://hub.docker.com/r/apache/airflow)
3232
for all the supported Python versions.
3333

34-
You can find the following images there (Assuming Airflow version `3.0.0`):
34+
You can find the following images there (Assuming Airflow version `3.0.1.dev0`):
3535

3636
* `apache/airflow:latest` - the latest released Airflow image with default Python version (3.12 currently)
3737
* `apache/airflow:latest-pythonX.Y` - the latest released Airflow image with specific Python version
38-
* `apache/airflow:3.0.0` - the versioned Airflow image with default Python version (3.12 currently)
39-
* `apache/airflow:3.0.0-pythonX.Y` - the versioned Airflow image with specific Python version
38+
* `apache/airflow:3.0.1.dev0` - the versioned Airflow image with default Python version (3.12 currently)
39+
* `apache/airflow:3.0.1.dev0-pythonX.Y` - the versioned Airflow image with specific Python version
4040

4141
Those are "reference" regular images. They contain the most common set of extras, dependencies and providers that are
4242
often used by the users and they are good to "try-things-out" when you want to just take Airflow for a spin,
@@ -47,8 +47,8 @@ via [Building the image](https://airflow.apache.org/docs/docker-stack/build.html
4747

4848
* `apache/airflow:slim-latest` - the latest released Airflow image with default Python version (3.12 currently)
4949
* `apache/airflow:slim-latest-pythonX.Y` - the latest released Airflow image with specific Python version
50-
* `apache/airflow:slim-3.0.0` - the versioned Airflow image with default Python version (3.12 currently)
51-
* `apache/airflow:slim-3.0.0-pythonX.Y` - the versioned Airflow image with specific Python version
50+
* `apache/airflow:slim-3.0.1.dev0` - the versioned Airflow image with default Python version (3.12 currently)
51+
* `apache/airflow:slim-3.0.1.dev0-pythonX.Y` - the versioned Airflow image with specific Python version
5252

5353
The Apache Airflow image provided as convenience package is optimized for size, and
5454
it provides just a bare minimal set of the extras and dependencies installed and in most cases

docker-stack-docs/docker-examples/extending/add-airflow-configuration/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
ENV AIRFLOW__CORE__LOAD_EXAMPLES=True
2020
ENV AIRFLOW__DATABASE__SQL_ALCHEMY_CONN=my_conn_string
2121
# [END Dockerfile]

docker-stack-docs/docker-examples/extending/add-apt-packages/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

docker-stack-docs/docker-examples/extending/add-build-essential-extend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

docker-stack-docs/docker-examples/extending/add-providers/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

docker-stack-docs/docker-examples/extending/add-pypi-packages-constraints/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}" lxml --constraint "${HOME}/constraints.txt"
2020
# [END Dockerfile]

docker-stack-docs/docker-examples/extending/add-pypi-packages-uv/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919

2020
# The `uv` tools is Rust packaging tool that is much faster than `pip` and other installer
2121
# Support for uv as installation tool is experimental

docker-stack-docs/docker-examples/extending/add-pypi-packages/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}" lxml
2020
# [END Dockerfile]

docker-stack-docs/docker-examples/extending/add-requirement-packages/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
COPY requirements.txt /
2020
RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}" -r /requirements.txt
2121
# [END Dockerfile]

docker-stack-docs/docker-examples/extending/custom-providers/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
RUN pip install "apache-airflow==${AIRFLOW_VERSION}" --no-cache-dir apache-airflow-providers-docker==2.5.1
2020
# [END Dockerfile]

docker-stack-docs/docker-examples/extending/embedding-dags/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919

2020
COPY --chown=airflow:root test_dag.py /opt/airflow/dags
2121

docker-stack-docs/docker-examples/extending/writable-directory/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.0
18+
FROM apache/airflow:3.0.1.dev0
1919
RUN umask 0002; \
2020
mkdir -p ~/writeable-directory
2121
# [END Dockerfile]

docker-stack-docs/entrypoint.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ if you specify extra arguments. For example:
132132

133133
.. code-block:: bash
134134
135-
docker run -it apache/airflow:3.0.0-python3.9 bash -c "ls -la"
135+
docker run -it apache/airflow:3.0.1.dev0-python3.9 bash -c "ls -la"
136136
total 16
137137
drwxr-xr-x 4 airflow root 4096 Jun 5 18:12 .
138138
drwxr-xr-x 1 root root 4096 Jun 5 18:12 ..
@@ -144,21 +144,21 @@ you pass extra parameters. For example:
144144

145145
.. code-block:: bash
146146
147-
> docker run -it apache/airflow:3.0.0-python3.9 python -c "print('test')"
147+
> docker run -it apache/airflow:3.0.1.dev0-python3.9 python -c "print('test')"
148148
test
149149
150150
If first argument equals to "airflow" - the rest of the arguments is treated as an airflow command
151151
to execute. Example:
152152

153153
.. code-block:: bash
154154
155-
docker run -it apache/airflow:3.0.0-python3.9 airflow webserver
155+
docker run -it apache/airflow:3.0.1.dev0-python3.9 airflow webserver
156156
157157
If there are any other arguments - they are simply passed to the "airflow" command
158158

159159
.. code-block:: bash
160160
161-
> docker run -it apache/airflow:3.0.0-python3.9 help
161+
> docker run -it apache/airflow:3.0.1.dev0-python3.9 help
162162
usage: airflow [-h] GROUP_OR_COMMAND ...
163163
164164
positional arguments:
@@ -363,7 +363,7 @@ database and creating an ``admin/admin`` Admin user with the following command:
363363
--env "_AIRFLOW_DB_MIGRATE=true" \
364364
--env "_AIRFLOW_WWW_USER_CREATE=true" \
365365
--env "_AIRFLOW_WWW_USER_PASSWORD=admin" \
366-
apache/airflow:3.0.0-python3.9 webserver
366+
apache/airflow:3.0.1.dev0-python3.9 webserver
367367
368368
369369
.. code-block:: bash
@@ -372,7 +372,7 @@ database and creating an ``admin/admin`` Admin user with the following command:
372372
--env "_AIRFLOW_DB_MIGRATE=true" \
373373
--env "_AIRFLOW_WWW_USER_CREATE=true" \
374374
--env "_AIRFLOW_WWW_USER_PASSWORD_CMD=echo admin" \
375-
apache/airflow:3.0.0-python3.9 webserver
375+
apache/airflow:3.0.1.dev0-python3.9 webserver
376376
377377
The commands above perform initialization of the SQLite database, create admin user with admin password
378378
and Admin role. They also forward local port ``8080`` to the webserver port and finally start the webserver.
@@ -412,6 +412,6 @@ Example:
412412
--env "_AIRFLOW_DB_MIGRATE=true" \
413413
--env "_AIRFLOW_WWW_USER_CREATE=true" \
414414
--env "_AIRFLOW_WWW_USER_PASSWORD_CMD=echo admin" \
415-
apache/airflow:3.0.0-python3.9 webserver
415+
apache/airflow:3.0.1.dev0-python3.9 webserver
416416
417417
This method is only available starting from Docker image of Airflow 2.1.1 and above.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ classifiers = [
5959
]
6060

6161
# Version is defined in src/airflow/__init__.py and it is automatically synchronized by pre-commit
62-
version = "3.0.0"
62+
version = "3.0.1.dev0"
6363

6464
dependencies = [
6565
"apache-airflow-task-sdk<1.1.0,>=1.0.0",
66-
"apache-airflow-core==3.0.0",
66+
"apache-airflow-core==3.0.1.dev0",
6767
]
6868

6969
packages = []

0 commit comments

Comments
 (0)