This is an automated email from the ASF dual-hosted git repository. wonook pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nemo.git
The following commit(s) were added to refs/heads/master by this push: new dbe7077f3 Nemo Release 0.4 (#337) dbe7077f3 is described below commit dbe7077f38bd592f1989b137dabb63fa22e92b7f Author: Won Wook SONG <wsong0...@gmail.com> AuthorDate: Thu Sep 22 14:19:47 2022 +0900 Nemo Release 0.4 (#337) **Major changes:** - Bump Apache Nemo version to 0.5-snapshot, due to the release of v0.4 **Minor changes to note:** - None **Tests for the changes:** - Existing tests comply **Other comments:** - None --- client/pom.xml | 2 +- common/pom.xml | 2 +- .../nemo/common/ir/vertex/transform/LatencymarkEmitTransform.java | 1 + .../org/apache/nemo/common/ir/vertex/transform/StreamTransform.java | 2 +- compiler/backend/pom.xml | 2 +- compiler/frontend/beam/pom.xml | 2 +- compiler/frontend/spark/pom.xml | 2 +- compiler/optimizer/pom.xml | 2 +- compiler/pom.xml | 2 +- compiler/test/pom.xml | 2 +- conf/pom.xml | 2 +- examples/beam/pom.xml | 2 +- examples/nexmark/pom.xml | 2 +- examples/pom.xml | 2 +- examples/spark/pom.xml | 2 +- pom.xml | 4 ++-- runtime/common/pom.xml | 2 +- runtime/driver/pom.xml | 2 +- runtime/executor/pom.xml | 2 +- runtime/master/pom.xml | 2 +- runtime/pom.xml | 2 +- runtime/test/pom.xml | 2 +- 22 files changed, 23 insertions(+), 22 deletions(-) diff --git a/client/pom.xml b/client/pom.xml index 2de98276c..56087771b 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-project</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/common/pom.xml b/common/pom.xml index a0ab9ba42..d79144da1 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-project</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/common/src/main/java/org/apache/nemo/common/ir/vertex/transform/LatencymarkEmitTransform.java b/common/src/main/java/org/apache/nemo/common/ir/vertex/transform/LatencymarkEmitTransform.java index eaa60b2ba..5ae96958e 100644 --- a/common/src/main/java/org/apache/nemo/common/ir/vertex/transform/LatencymarkEmitTransform.java +++ b/common/src/main/java/org/apache/nemo/common/ir/vertex/transform/LatencymarkEmitTransform.java @@ -41,6 +41,7 @@ public abstract class LatencymarkEmitTransform<I, O> implements Transform<I, O> /** * get OutputCollector. + * @return the output collector. */ public OutputCollector<O> getOutputCollector() { return outputCollector; diff --git a/common/src/main/java/org/apache/nemo/common/ir/vertex/transform/StreamTransform.java b/common/src/main/java/org/apache/nemo/common/ir/vertex/transform/StreamTransform.java index e812a9dcf..97e7c095a 100644 --- a/common/src/main/java/org/apache/nemo/common/ir/vertex/transform/StreamTransform.java +++ b/common/src/main/java/org/apache/nemo/common/ir/vertex/transform/StreamTransform.java @@ -24,7 +24,7 @@ import org.slf4j.LoggerFactory; /** * A {@link Transform} relays input data from upstream vertex to downstream vertex promptly. - * This transform can be used for merging input data into the {@link OutputCollector}. + * This transform can be used for merging input data into the {@link org.apache.nemo.common.ir.OutputCollector}. * * @param <T> input/output type. */ diff --git a/compiler/backend/pom.xml b/compiler/backend/pom.xml index e461d4e43..be7178d15 100644 --- a/compiler/backend/pom.xml +++ b/compiler/backend/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-compiler</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/compiler/frontend/beam/pom.xml b/compiler/frontend/beam/pom.xml index b5501d1a7..3ca4b9bba 100644 --- a/compiler/frontend/beam/pom.xml +++ b/compiler/frontend/beam/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-compiler</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../../</relativePath> </parent> diff --git a/compiler/frontend/spark/pom.xml b/compiler/frontend/spark/pom.xml index f135fd893..78a03f373 100644 --- a/compiler/frontend/spark/pom.xml +++ b/compiler/frontend/spark/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-compiler</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../../</relativePath> </parent> diff --git a/compiler/optimizer/pom.xml b/compiler/optimizer/pom.xml index 49a546d86..55c79c037 100644 --- a/compiler/optimizer/pom.xml +++ b/compiler/optimizer/pom.xml @@ -35,7 +35,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-compiler</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/compiler/pom.xml b/compiler/pom.xml index 6762fbe23..6036dc585 100644 --- a/compiler/pom.xml +++ b/compiler/pom.xml @@ -22,7 +22,7 @@ under the License. <parent> <artifactId>nemo-project</artifactId> <groupId>org.apache.nemo</groupId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/compiler/test/pom.xml b/compiler/test/pom.xml index 4b0b1ec52..2a89b9758 100644 --- a/compiler/test/pom.xml +++ b/compiler/test/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-compiler</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/conf/pom.xml b/conf/pom.xml index fc7ada129..25b5cb652 100644 --- a/conf/pom.xml +++ b/conf/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-project</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/examples/beam/pom.xml b/examples/beam/pom.xml index 65651a30f..94d763d19 100644 --- a/examples/beam/pom.xml +++ b/examples/beam/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-examples</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/examples/nexmark/pom.xml b/examples/nexmark/pom.xml index 71672bf68..09df72ce4 100644 --- a/examples/nexmark/pom.xml +++ b/examples/nexmark/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>nemo-examples</artifactId> <groupId>org.apache.nemo</groupId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/examples/pom.xml b/examples/pom.xml index 5f58afc66..34acb4403 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>nemo-project</artifactId> <groupId>org.apache.nemo</groupId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/examples/spark/pom.xml b/examples/spark/pom.xml index 7a7878cf3..3638c4c97 100644 --- a/examples/spark/pom.xml +++ b/examples/spark/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <artifactId>nemo-examples</artifactId> <groupId>org.apache.nemo</groupId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/pom.xml b/pom.xml index ac09b14eb..0c7042301 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ under the License. <groupId>org.apache.nemo</groupId> <artifactId>nemo-project</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <packaging>pom</packaging> <name>Nemo Project</name> @@ -36,7 +36,7 @@ under the License. <connection>scm:git:https://gitbox.apache.org/repos/asf/incubator-nemo.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/incubator-nemo.git</developerConnection> <url>https://github.com/apache/incubator-nemo/tree/${project.scm.tag}</url> - <tag>master</tag> + <tag>nemo-project-0.4</tag> </scm> <properties> diff --git a/runtime/common/pom.xml b/runtime/common/pom.xml index 75cfa1440..074b6ec0c 100644 --- a/runtime/common/pom.xml +++ b/runtime/common/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-runtime</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/runtime/driver/pom.xml b/runtime/driver/pom.xml index 51c8f9460..021aaeb50 100644 --- a/runtime/driver/pom.xml +++ b/runtime/driver/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-runtime</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/runtime/executor/pom.xml b/runtime/executor/pom.xml index 1f95aa1b8..bce8d4b9e 100644 --- a/runtime/executor/pom.xml +++ b/runtime/executor/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-runtime</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/runtime/master/pom.xml b/runtime/master/pom.xml index f015abc20..1765a2aa7 100644 --- a/runtime/master/pom.xml +++ b/runtime/master/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-runtime</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> diff --git a/runtime/pom.xml b/runtime/pom.xml index 71a9b4553..98070f53f 100644 --- a/runtime/pom.xml +++ b/runtime/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>nemo-project</artifactId> <groupId>org.apache.nemo</groupId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/runtime/test/pom.xml b/runtime/test/pom.xml index 91342f393..6c27b7642 100644 --- a/runtime/test/pom.xml +++ b/runtime/test/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.nemo</groupId> <artifactId>nemo-runtime</artifactId> - <version>0.4-SNAPSHOT</version> + <version>0.5-SNAPSHOT</version> <relativePath>../</relativePath> </parent>