You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2016/10/03 13:05:18 UTC

[1/2] lucy git commit: Change tag names in release_commands.pl

Repository: lucy
Updated Branches:
  refs/heads/0.6 f0eecf4ce -> b00ad0783
  refs/heads/master 0959ad9d3 -> e30057d75


Change tag names in release_commands.pl


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/e30057d7
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/e30057d7
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/e30057d7

Branch: refs/heads/master
Commit: e30057d752652fb52be7e45949c8778ddfbeaf7b
Parents: 0959ad9
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon Oct 3 15:03:15 2016 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon Oct 3 15:03:15 2016 +0200

----------------------------------------------------------------------
 devel/bin/release_commands.pl | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/e30057d7/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index 3204358..d7a8d89 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -86,14 +86,14 @@ if ( $micro == 0 && $rc < 2 ) {
 }
 
 say qq|# Create a tag for the release candidate.|;
-say qq|git tag apache-lucy-$full_rc_version |
+say qq|git tag v$full_rc_version |
     . qq|-m "Tagging release candidate $rc for $x_y_z_version."\n|;
 
 say qq|# Export a pristine copy of the source from the release candidate|;
 say qq|# tag.|;
 say qq|git archive --prefix=apache-lucy-$x_y_z_version/ |
     . qq|--output=apache-lucy-$x_y_z_version.tar.gz |
-    . qq|apache-lucy-$full_rc_version\n|;
+    . qq|v$full_rc_version\n|;
 
 say qq|# Create an RC directory in our dev area on dist.apache.org|;
 say qq|# and check out a copy.|;
@@ -139,7 +139,7 @@ say qq|[...]\n|;
 
 say qq|# Push your branch and the tag for the RC.|;
 say qq|git push origin $major.$minor|;
-say qq|git push origin apache-lucy-$full_rc_version\n|;
+say qq|git push origin v$full_rc_version\n|;
 
 say qq|###############################################################|;
 say qq|# Voting|;
@@ -155,10 +155,10 @@ say qq|# After the vote has passed...|;
 say qq|###############################################################\n|;
 
 say qq|# Tag the release and delete the RC tags.|;
-say qq|git tag rel/apache-lucy-$x_y_z_version apache-lucy-$full_rc_version|;
-say qq|git push origin rel/apache-lucy-$x_y_z_version|;
+say qq|git tag rel/v$x_y_z_version v$full_rc_version|;
+say qq|git push origin rel/v$x_y_z_version|;
 for ( 1 .. $rc ) {
-    my $rc_tag = qq|apache-lucy-$major.$minor.$micro-rc$_|;
+    my $rc_tag = qq|v$major.$minor.$micro-rc$_|;
     say qq|git tag -d $rc_tag|;
     say qq|git push origin :$rc_tag|;
 }
@@ -254,7 +254,7 @@ This candidate was assembled according to the process documented at:
 
 It was cut using "git archive" from the tag at:
 
-    https://git-wip-us.apache.org/repos/asf?p=lucy.git;a=tag;h=refs/tags/apache-lucy-$full_rc_version
+    https://git-wip-us.apache.org/repos/asf?p=lucy.git;a=tag;h=refs/tags/v$full_rc_version
 
 Please vote on releasing this candidate as Apache Lucy version
 $x_y_z_version.  The vote will be held open for at least the next 72


[2/2] lucy git commit: Change tag names in release_commands.pl

Posted by nw...@apache.org.
Change tag names in release_commands.pl


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/b00ad078
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/b00ad078
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/b00ad078

Branch: refs/heads/0.6
Commit: b00ad078365392d40e84f5c3f5ef94e089431369
Parents: f0eecf4
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon Oct 3 15:03:15 2016 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon Oct 3 15:03:36 2016 +0200

----------------------------------------------------------------------
 devel/bin/release_commands.pl | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/b00ad078/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index 3204358..d7a8d89 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -86,14 +86,14 @@ if ( $micro == 0 && $rc < 2 ) {
 }
 
 say qq|# Create a tag for the release candidate.|;
-say qq|git tag apache-lucy-$full_rc_version |
+say qq|git tag v$full_rc_version |
     . qq|-m "Tagging release candidate $rc for $x_y_z_version."\n|;
 
 say qq|# Export a pristine copy of the source from the release candidate|;
 say qq|# tag.|;
 say qq|git archive --prefix=apache-lucy-$x_y_z_version/ |
     . qq|--output=apache-lucy-$x_y_z_version.tar.gz |
-    . qq|apache-lucy-$full_rc_version\n|;
+    . qq|v$full_rc_version\n|;
 
 say qq|# Create an RC directory in our dev area on dist.apache.org|;
 say qq|# and check out a copy.|;
@@ -139,7 +139,7 @@ say qq|[...]\n|;
 
 say qq|# Push your branch and the tag for the RC.|;
 say qq|git push origin $major.$minor|;
-say qq|git push origin apache-lucy-$full_rc_version\n|;
+say qq|git push origin v$full_rc_version\n|;
 
 say qq|###############################################################|;
 say qq|# Voting|;
@@ -155,10 +155,10 @@ say qq|# After the vote has passed...|;
 say qq|###############################################################\n|;
 
 say qq|# Tag the release and delete the RC tags.|;
-say qq|git tag rel/apache-lucy-$x_y_z_version apache-lucy-$full_rc_version|;
-say qq|git push origin rel/apache-lucy-$x_y_z_version|;
+say qq|git tag rel/v$x_y_z_version v$full_rc_version|;
+say qq|git push origin rel/v$x_y_z_version|;
 for ( 1 .. $rc ) {
-    my $rc_tag = qq|apache-lucy-$major.$minor.$micro-rc$_|;
+    my $rc_tag = qq|v$major.$minor.$micro-rc$_|;
     say qq|git tag -d $rc_tag|;
     say qq|git push origin :$rc_tag|;
 }
@@ -254,7 +254,7 @@ This candidate was assembled according to the process documented at:
 
 It was cut using "git archive" from the tag at:
 
-    https://git-wip-us.apache.org/repos/asf?p=lucy.git;a=tag;h=refs/tags/apache-lucy-$full_rc_version
+    https://git-wip-us.apache.org/repos/asf?p=lucy.git;a=tag;h=refs/tags/v$full_rc_version
 
 Please vote on releasing this candidate as Apache Lucy version
 $x_y_z_version.  The vote will be held open for at least the next 72