Skip to content
Snippets Groups Projects
Commit 877e3a80 authored by Adam G-H's avatar Adam G-H
Browse files

3.13.0 Release

parent bfd67f2f
No related branches found
No related tags found
No related merge requests found
## 3.13.0
There are no user-facing changes in this version.
## 3.12.0 ## 3.12.0
* Hotfixed a bug that could prevent tests from running under SimpleTest. There * Hotfixed a bug that could prevent tests from running under SimpleTest. There
are no user-facing changes in this version. are no user-facing changes in this version.
......
## 3.13.0
There are no user-facing changes in this version.
...@@ -10,7 +10,7 @@ fi ...@@ -10,7 +10,7 @@ fi
VERSION=${BRANCH#release/} VERSION=${BRANCH#release/}
# Ask git for the most recent semantic version tag, and use it as the version # Ask git for the most recent semantic version tag, and use it as the version
# from which to update. # from which to update.
FROM=$(git tag --list --sort -creatordate | head -n 2 | grep -E '^(\d+.?){3}$') FROM=$(git tag --list --sort -creatordate | head -n 2 | grep -E '^(\d+.?){3}')
./install-drupal.sh ./install-drupal.sh
......
...@@ -19,8 +19,6 @@ sleep 5 ...@@ -19,8 +19,6 @@ sleep 5
BRANCH=$(git rev-parse --abbrev-ref HEAD) BRANCH=$(git rev-parse --abbrev-ref HEAD)
if [[ $BRANCH =~ ^8\.x\-[0-9]+\.x$ ]]; then if [[ $BRANCH =~ ^8\.x\-[0-9]+\.x$ ]]; then
git remote add drupal-org git@git.drupal.org:project/$PROJECT.git
git merge --squash $RELEASE_BRANCH git merge --squash $RELEASE_BRANCH
git commit --all --quiet --message "$1 Release" git commit --all --quiet --message "$1 Release"
git push --quiet origin git push --quiet origin
...@@ -38,8 +36,6 @@ if [[ $BRANCH =~ ^8\.x\-[0-9]+\.x$ ]]; then ...@@ -38,8 +36,6 @@ if [[ $BRANCH =~ ^8\.x\-[0-9]+\.x$ ]]; then
git push --quiet drupal-org $DRUPAL_VERSION git push --quiet drupal-org $DRUPAL_VERSION
echo "Tagged $DRUPAL_VERSION and pushed to drupal.org." echo "Tagged $DRUPAL_VERSION and pushed to drupal.org."
git remote remove drupal-org
if [[ $MARKDOWN ]]; then if [[ $MARKDOWN ]]; then
markdown logs/$1.md | pbcopy markdown logs/$1.md | pbcopy
echo "The change log has been copied to the clipboard as HTML." echo "The change log has been copied to the clipboard as HTML."
......
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment