Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2012-02-14 21:39:06 +0400
committerMarc Delisle <marc@infomarc.info>2012-02-14 21:39:06 +0400
commit440c4cc6d0092cd4dea6fe8b054f2f26721882d9 (patch)
tree3eab2f71dfca3d8009996cce97ac9291591218a9 /scripts
parentcbf1f6a3d4792c5d25ce33ea2b37df7ed168fb4a (diff)
TESTING branch is gone
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/create-release.sh17
1 files changed, 5 insertions, 12 deletions
diff --git a/scripts/create-release.sh b/scripts/create-release.sh
index a3cee21419..2a93e8b803 100755
--- a/scripts/create-release.sh
+++ b/scripts/create-release.sh
@@ -36,7 +36,7 @@ ensure_local_branch() {
}
# Marks current head of given branch as head of other branch
-# Used for STABLE/TESTING tracking
+# Used for STABLE tracking
mark_as_release() {
branch=$1
rel_branch=$2
@@ -240,18 +240,11 @@ if [ $# -gt 0 ] ; then
echo "* Tagging release as $tagname"
git tag -a -m "Released $version" $tagname $branch
if echo $version | grep -q '^2\.11\.' ; then
- echo '* 2.11 branch, no STABLE/TESTING update'
+ echo '* 2.11 branch, no STABLE update'
elif echo $version | grep -q '^3\.3\.' ; then
- echo '* 3.3 branch, no STABLE/TESTING update'
+ echo '* 3.3 branch, no STABLE update'
else
- if echo $version | grep '[a-z_-]' ; then
- mark_as_release $branch TESTING
- else
- # We update both branches here
- # As it does not make sense to have older testing than stable
- mark_as_release $branch TESTING
- mark_as_release $branch STABLE
- fi
+ mark_as_release $branch STABLE
git checkout master
fi
echo " Dont forget to push tags using: git push --tags"
@@ -274,7 +267,7 @@ Todo now:
1. If not already done, tag the repository with the new revision number
for a plain release or a release candidate:
version 2.7.0 gets two tags: RELEASE_2_7_0 and STABLE
- version 2.7.1-rc1 gets RELEASE_2_7_1RC1 and TESTING
+ version 2.7.1-rc1 gets RELEASE_2_7_1RC1
2. prepare a release/phpMyAdmin-$version-notes.html explaining in short the goal of
this release and paste into it the ChangeLog for this release