This is an automated email from the ASF dual-hosted git repository.
weimer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/reef.git
The following commit(s) were added to refs/heads/master by this push:
new b621659 [REEF-2068] Bugfix: change_version.py fails on file
build.DotNet.props (#1507)
b621659 is described below
commit b621659dbffc4e7826d618f0f0359c0a6e597b97
Author: Sergiy Matusevych <[email protected]>
AuthorDate: Wed May 26 08:06:07 2021 -0700
[REEF-2068] Bugfix: change_version.py fails on file build.DotNet.props
(#1507)
We no longer have the build.DotNet.props file in our system.
The script should update the file lang/cs/build.Common.props instead.
JIRA:
[REEF-2068](https://issues.apache.org/jira/projects/REEF/issues/REEF-2068)
---
dev/change_version.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev/change_version.py b/dev/change_version.py
index cbe2fee..a9636aa 100644
--- a/dev/change_version.py
+++ b/dev/change_version.py
@@ -147,7 +147,7 @@ def change_assembly_info_cs(file, new_version):
f.close()
"""
-Change Version in lang/cs/build.DotNet.props
+Change Version in lang/cs/build.Common.props
"""
def change_dotnet_props_cs(file, new_version):
changed_str = ""
@@ -360,8 +360,8 @@ def change_version(reef_home, new_version, pom_only):
change_project_number_Doxyfile(reef_home + "/Doxyfile", new_version)
print reef_home + "/Doxyfile"
- change_dotnet_props_cs(reef_home + "/lang/cs/build.DotNet.props",
new_version)
- print reef_home + "/lang/cs/build.DotNet.props"
+ change_dotnet_props_cs(reef_home + "/lang/cs/build.Common.props",
new_version)
+ print reef_home + "/lang/cs/build.Common.props"
change_reef_on_spark_scala(reef_home +
"/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala",
new_version)
print reef_home +
"/lang/scala/reef-examples-scala/src/main/scala/org/apache/reef/examples/hellospark/ReefOnSpark.scala"