This is an automated email from the ASF dual-hosted git repository. glauesppen pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git
commit 27299415337893375a9ef87896249072d2727056 Author: Glaucia <[email protected]> AuthorDate: Tue Jul 11 22:22:26 2023 +0100 adding the release version into docs --- README.md | 4 ++-- RELEASE_NOTES | 2 +- guides/tutorial.md | 8 ++++---- python/setup.cfg | 2 +- wayang-docs/pom.xml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index fe1dc84a..728323dd 100644 --- a/README.md +++ b/README.md @@ -60,8 +60,8 @@ You first have to build the binaries as shown [here](tutorial.md). Once you have the binaries built, follow these steps to install Wayang: ```shell -tar -xvf wayang-0.6.1-snapshot.tar.gz -cd wayang-0.6.1-SNAPSHOT +tar -xvf wayang-0.7.0.tar.gz +cd wayang-0.7.0 ``` In linux diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 1564c8e1..3bbb4e0f 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,5 +1,5 @@ ============================================================== -Apache Wayang (incubating) 1.0.0 +Apache Wayang (incubating) 0.7.0 ============================================================== This is the first official major release of Apache Wayang (incubating). diff --git a/guides/tutorial.md b/guides/tutorial.md index 90df0273..304a0be0 100644 --- a/guides/tutorial.md +++ b/guides/tutorial.md @@ -29,14 +29,14 @@ Running following commands to build Wayang and generate the tar.gz cd incubator-wayang ./mvnw clean package -pl :wayang-assembly -Pdistribution ``` -Then you can find the `wayang-assembly-0.6.1-SNAPSHOT-dist.tar.gz` under `wayang-assembly/target` directory. +Then you can find the `wayang-assembly-0.7.0-dist.tar.gz` under `wayang-assembly/target` directory. # Prepare the environment ## Wayang ```shell -tar -xvf wayang-assembly-0.6.1-SNAPSHOT-dist.tar.gz -cd wayang-0.6.1-SNAPSHOT +tar -xvf wayang-assembly-0.7.0-dist.tar.gz +cd wayang-0.7.0 ``` In linux @@ -60,7 +60,7 @@ source ~/.zshrc To execute the WordCount example with Apache Wayang, you need to execute your program with the 'wayang-submit' command: ```shell -cd wayang-0.6.1-SNAPSHOT +cd wayang-0.7.0 ./bin/wayang-submit org.apache.wayang.apps.wordcount.Main java file://$(pwd)/README.md ``` Then you should be able to see outputs like this: diff --git a/python/setup.cfg b/python/setup.cfg index f2b5ada8..44aa42b7 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -17,7 +17,7 @@ [metadata] name = pywy -version = 0.6.1-SNAPSHOT +version = 0.7.0 author = Apache Wayang(Incubating) author_email = [email protected] description = Implementation of python for Apache Wayang diff --git a/wayang-docs/pom.xml b/wayang-docs/pom.xml index 93cd2c9a..d0ee1648 100644 --- a/wayang-docs/pom.xml +++ b/wayang-docs/pom.xml @@ -21,7 +21,7 @@ <parent> <artifactId>wayang</artifactId> <groupId>org.apache.wayang</groupId> - <version>0.6.1-SNAPSHOT</version> + <version>0.7.0</version> </parent> <modelVersion>4.0.0</modelVersion>
