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

zkaoudi pushed a commit to branch release-1.0.0-RC4-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git

commit c1ce8aa2d0c08ee1f4863fc676dabdf88f8466ee
Author: Zoi <[email protected]>
AuthorDate: Fri Jan 17 14:46:58 2025 +0100

    update readme
---
 README.md                   | 6 +++---
 guides/develop-in-Wayang.md | 4 ++--
 guides/tutorial.md          | 8 ++++----
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 37a03e1b..5b2a8301 100644
--- a/README.md
+++ b/README.md
@@ -61,8 +61,8 @@ You first have to build the binaries as shown 
[here](guides/tutorial.md).
 Once you have the binaries built, follow these steps to install Wayang:
 
 ```shell
-tar -xvf wayang-0.7.1-snapshot.tar.gz
-cd wayang-0.7.1-SNAPSHOT
+tar -xvf wayang-1.0.0-snapshot.tar.gz
+cd wayang-1.0.0-SNAPSHOT
 ```
 
 In linux
@@ -101,7 +101,7 @@ Wayang is available via Maven Central. To use it with 
Maven, include the followi
 <dependency>
   <groupId>org.apache.wayang</groupId>
   <artifactId>wayang-***</artifactId>
-  <version>0.7.1</version>
+  <version>1.0.0</version>
 </dependency>
 ```
 Note the `***`: Wayang ships with multiple modules that can be included in 
your app, depending on how you want to use it:
diff --git a/guides/develop-in-Wayang.md b/guides/develop-in-Wayang.md
index 3121451b..1477286e 100644
--- a/guides/develop-in-Wayang.md
+++ b/guides/develop-in-Wayang.md
@@ -36,7 +36,7 @@ Important: before making a Pull Request make sure all modules 
compile and all te
 Before executing your code, make sure the required environment variables are 
set correctly (see [tutorial.md](tutorial.md))
 ```shell
 cd wayang-assembly/target/
-tar -xvf apache-wayang-assembly-0.7.1-SNAPSHOT-incubating-dist.tar.gz
-cd wayang-0.7.1-SNAPSHOT
+tar -xvf apache-wayang-assembly-1.0.1-SNAPSHOT-incubating-dist.tar.gz
+cd wayang-1.0.1-SNAPSHOT
 ./bin/wayang-submit org.apache.wayang.<main_class> <parameters>
 ```
diff --git a/guides/tutorial.md b/guides/tutorial.md
index f3fdca60..3754da01 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.7.1-SNAPSHOT-dist.tar.gz` under 
`wayang-assembly/target` directory.
+Then you can find the `wayang-assembly-1.0.1-SNAPSHOT-dist.tar.gz` under 
`wayang-assembly/target` directory.
 
 
 # Prepare the environment
 ## Wayang
 ```shell
-tar -xvf wayang-assembly-0.7.1-SNAPSHOT-dist.tar.gz
-cd wayang-0.7.1-SNAPSHOT
+tar -xvf wayang-assembly-1.0.1-SNAPSHOT-dist.tar.gz
+cd wayang-1.0.1-SNAPSHOT
 ```
 
 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.7.1-SNAPSHOT
+cd wayang-1.0.1-SNAPSHOT
 ./bin/wayang-submit org.apache.wayang.apps.wordcount.Main java 
file://$(pwd)/README.md
 ```
 Then you should be able to see outputs like this:

Reply via email to