Skip to content

Commit

Permalink
[release] Update the examples, playground and docs/config.toml to poi…
Browse files Browse the repository at this point in the history
…nt to 3.3.0 release
  • Loading branch information
MartijnVisser committed Sep 12, 2023
1 parent 488da20 commit abfc748
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
13 changes: 7 additions & 6 deletions docs/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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.3-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.3-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"
Expand All @@ -57,10 +57,11 @@ 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 = [
["3.3", "https://nightlies.apache.org/flink/flink-statefun-docs-release-3.3"],
["3.2", "https://nightlies.apache.org/flink/flink-statefun-docs-release-3.2"],
["3.1", "https://nightlies.apache.org/flink/flink-statefun-docs-release-3.1"],
["3.0", "https://nightlies.apache.org/flink/flink-statefun-docs-release-3.0"],
Expand Down
2 changes: 1 addition & 1 deletion statefun-sdk-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion statefun-sdk-python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit abfc748

Please sign in to comment.