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

martijnvisser pushed a commit to branch release-3.3
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git

commit e389a5663ead3ecef988d79aeba9fb75d3e85d59
Author: Martijn Visser <martijnvis...@apache.org>
AuthorDate: Thu Sep 7 12:07:42 2023 +0200

    [release] Update the examples, playground and docs/config.toml to point to 
3.3.0 release
---
 README.md                     |  8 ++++----
 docs/config.toml              | 12 ++++++------
 statefun-sdk-js/README.md     |  2 +-
 statefun-sdk-python/README.md |  2 +-
 4 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/README.md b/README.md
index c57af1db..85757985 100755
--- a/README.md
+++ b/README.md
@@ -114,21 +114,21 @@ We highly recommend starting from the the tutorials and 
examples that can be fou
 
 ### <a name="java">New Java Users
 
-Head over to the [Java SDK 
Showcase](https://github.com/apache/flink-statefun-playground/tree/release-3.2/java/showcase),
 or the [Java Greeter 
Example](https://github.com/apache/flink-statefun-playground/tree/release-3.2/java/greeter)
 in the playground repository.
+Head over to the [Java SDK 
Showcase](https://github.com/apache/flink-statefun-playground/tree/release-3.3/java/showcase),
 or the [Java Greeter 
Example](https://github.com/apache/flink-statefun-playground/tree/release-3.3/java/greeter)
 in the playground repository.
 
 Alternatively, execute the following commands to clone the playground 
repository locally:
 ```
-$ git clone -b release-3.2 
https://github.com/apache/flink-statefun-playground.git
+$ git clone -b release-3.3 
https://github.com/apache/flink-statefun-playground.git
 $ cd java/showcase # or, java/greeter
 ```
 
 ### <a name="python">New Python Users
 
-For new Python users, head over to the [Python SDK 
Showcase](https://github.com/apache/flink-statefun-playground/tree/release-3.2/python/showcase),
 or the [Python Greeter 
Example](https://github.com/apache/flink-statefun-playground/tree/release-3.2/python/greeter)
 in the playground repository.
+For new Python users, head over to the [Python SDK 
Showcase](https://github.com/apache/flink-statefun-playground/tree/release-3.3/python/showcase),
 or the [Python Greeter 
Example](https://github.com/apache/flink-statefun-playground/tree/release-3.3/python/greeter)
 in the playground repository.
 
 Alternatively, execute the following commands to clone the playground 
repository locally:
 ```
-$ git clone -b release-3.2 
https://github.com/apache/flink-statefun-playground.git
+$ git clone -b release-3.3 
https://github.com/apache/flink-statefun-playground.git
 $ cd python/showcase # or, python/greeter
 ```
 
diff --git a/docs/config.toml b/docs/config.toml
index 3fbac485..3b0dc356 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-baseURL = '//nightlies.apache.org/flink/flink-statefun-docs-master'
+baseURL = '//nightlies.apache.org/flink/flink-statefun-docs-release-3.3'
 languageCode = "en-us"
 title = "Apache Flink Stateful Functions"
 enableGitInfo = false
@@ -24,7 +24,7 @@ pygmentsUseClasses = true
 [params]
   # Flag whether this is a stable version or not.
   # Used for the quickstart page.
-  IsStable = false
+  IsStable = true
 
   # Flag to indicate whether an outdated warning should be shown.
   ShowOutDatedWarning = false
@@ -34,14 +34,14 @@ 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 = "3.4-SNAPSHOT"
+  Version = "3.3.0"
 
   # For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot
   # release this should be the same as the regular version
-  VersionTitle = "3.4-SNAPSHOT"
+  VersionTitle = "3.3"
 
   # The branch for this version of Apache Flink Stateful Functions
-  Branch = "master"
+  Branch = "release-3.3"
 
   # The github repository for Apache Flink Stateful Functions
   Repo = "//github.com/apache/flink-statefun"
@@ -57,7 +57,7 @@ pygmentsUseClasses = true
   # of the menu
   MenuLinks = [
     ["Project Homepage", "//flink.apache.org"],
-    ["JavaDocs", 
"//nightlies.apache.org/flink/flink-statefun-docs-master/api/java/"],
+    ["JavaDocs", 
"//nightlies.apache.org/flink/flink-statefun-docs-release-3.3/api/java/"],
   ]
 
   PreviousDocs = [
diff --git a/statefun-sdk-js/README.md b/statefun-sdk-js/README.md
index 01640c91..fc06e498 100644
--- a/statefun-sdk-js/README.md
+++ b/statefun-sdk-js/README.md
@@ -17,7 +17,7 @@ to get yourself started with Stateful Functions in JavaScript.
 
 For a fully detailed documentation, please visit the [official 
docs](https://ci.apache.org/projects/flink/flink-statefun-docs-master).
 
-For code examples, please take a look at the 
[examples](https://github.com/apache/flink-statefun-playground/tree/release-3.2/javascript).
+For code examples, please take a look at the 
[examples](https://github.com/apache/flink-statefun-playground/tree/release-3.3/javascript).
 
 ## Table of Contents
 
diff --git a/statefun-sdk-python/README.md b/statefun-sdk-python/README.md
index 4856ed33..778e8f2f 100755
--- a/statefun-sdk-python/README.md
+++ b/statefun-sdk-python/README.md
@@ -17,7 +17,7 @@ to get yourself started with Stateful Functions in Python.
 
 For a fully detailed documentation, please visit the [official 
docs](https://ci.apache.org/projects/flink/flink-statefun-docs-master).
 
-For code examples, please take a look at the 
[examples](https://github.com/apache/flink-statefun-playground/tree/release-3.2/python).
+For code examples, please take a look at the 
[examples](https://github.com/apache/flink-statefun-playground/tree/release-3.3/python).
 
 ## Table of Contents
 

Reply via email to