This is an automated email from the ASF dual-hosted git repository.
xtsong pushed a commit to branch release-0.1
in repository https://gitbox.apache.org/repos/asf/flink-agents.git
The following commit(s) were added to refs/heads/release-0.1 by this push:
new a1eb55c [doc] Update doc version to 0.1.1 (#378)
a1eb55c is described below
commit a1eb55c4ffd0aa734a4a0d417ca638258b37a424
Author: Wenjin Xie <[email protected]>
AuthorDate: Wed Dec 10 11:00:18 2025 +0800
[doc] Update doc version to 0.1.1 (#378)
---
docs/config.toml | 2 +-
docs/content/docs/get-started/installation.md | 16 ++++++++--------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/docs/config.toml b/docs/config.toml
index 1e9a0f9..6622082 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -34,7 +34,7 @@ pygmentsUseClasses = true
# we change the version for the complete docs when forking of a release
branch
# etc.
# The full version string as referenced in Maven (e.g. 1.2.1)
- Version = "0.1.0"
+ Version = "0.1.1"
# For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot
# release this should be the same as the regular version
diff --git a/docs/content/docs/get-started/installation.md
b/docs/content/docs/get-started/installation.md
index a4317f0..2ac36f4 100644
--- a/docs/content/docs/get-started/installation.md
+++ b/docs/content/docs/get-started/installation.md
@@ -124,7 +124,7 @@ Clone the repository and checkout the release tag:
git clone https://github.com/apache/flink-agents.git
cd flink-agents
# Checkout the release tag
-git checkout release-0.1.0
+git checkout release-0.1.1
```
{{< /tab >}}
@@ -132,12 +132,12 @@ git checkout release-0.1.0
Download the source tarball from the Apache mirror:
```shell
-# Download Flink Agents 0.1.0 source:
https://archive.apache.org/dist/flink/flink-agents-0.1.0
-curl -LO
https://archive.apache.org/dist/flink/flink-agents-0.1.0/flink-agents-0.1.0-src.tgz
+# Download Flink Agents 0.1.1 source:
https://archive.apache.org/dist/flink/flink-agents-0.1.1
+curl -LO
https://archive.apache.org/dist/flink/flink-agents-0.1.1/flink-agents-0.1.1-src.tgz
# Extract the archive
-tar -xzf flink-agents-0.1.0-src.tgz
-cd flink-agents-0.1.0-src
+tar -xzf flink-agents-0.1.1-src.tgz
+cd flink-agents-0.1.1-src
```
{{< /tab >}}
@@ -163,7 +163,7 @@ This script will:
After building:
- The Python package is installed and ready to use
-- The distribution JAR is located at: `dist/target/flink-agents-dist-0.1.0.jar`
+- The distribution JAR is located at: `dist/target/flink-agents-dist-0.1.1.jar`
## Deploy to Flink Cluster
@@ -208,7 +208,7 @@ The Flink Agents JAR is bundled inside the Python package.
Use the PYTHONPATH yo
```shell
# Copy the JAR from the Python package to Flink's lib directory
-cp $PYTHONPATH/flink_agents/lib/flink-agents-dist-0.1.0.jar $FLINK_HOME/lib/
+cp $PYTHONPATH/flink_agents/lib/flink-agents-dist-0.1.1.jar $FLINK_HOME/lib/
```
{{< /tab >}}
@@ -218,7 +218,7 @@ After building from source, the distribution JAR is located
in the `dist/target/
```shell
# Copy the JAR to Flink's lib directory
-cp dist/target/flink-agents-dist-0.1.0.jar $FLINK_HOME/lib/
+cp dist/target/flink-agents-dist-0.1.1.jar $FLINK_HOME/lib/
```
{{< /tab >}}