You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2021/01/14 04:25:30 UTC

[pulsar] branch master updated: Fix the set-project-version scripts (#9198)

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

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 6d8d32a  Fix the set-project-version scripts (#9198)
6d8d32a is described below

commit 6d8d32aab53c10b5752120e04185e4b3b689178c
Author: Yong Zhang <zh...@gmail.com>
AuthorDate: Thu Jan 14 12:24:56 2021 +0800

    Fix the set-project-version scripts (#9198)
    
    ---
    
    *Motivation*
    
    We introduce a new way to handle the proto and remove the
    'protobuf-shaded/pom.xml' in the PR #9046.
    We need to remove the set version in the scripts.
---
 src/set-project-version.sh | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/set-project-version.sh b/src/set-project-version.sh
index 0dfdae6..9bc9d14 100755
--- a/src/set-project-version.sh
+++ b/src/set-project-version.sh
@@ -38,7 +38,5 @@ OLD_VERSION=`python ${ROOT_DIR}/src/get-project-version.py`
 mvn versions:set -DnewVersion=$NEW_VERSION
 mvn versions:set -DnewVersion=$NEW_VERSION -pl buildtools
 mvn versions:set -DnewVersion=$NEW_VERSION -pl pulsar-sql/presto-distribution
-# install the new version of root pom local, so `update-parent` can update the right parent version
-sed -i -e "s/${OLD_VERSION}/${NEW_VERSION}/g" protobuf-shaded/pom.xml
 
 popd