Skip to content

Commit

Permalink
Re-enable CI PR check for versions if repo is Azure/azure-cli (Azure#…
Browse files Browse the repository at this point in the history
…5225)

* Re-enable CI PR check for versions if repo is Azure/azure-cli

* Now I need to update the versions for CI to pass...
  • Loading branch information
derekbekoe authored Jan 8, 2018
1 parent b719afd commit 6d82763
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 5 deletions.
3 changes: 2 additions & 1 deletion scripts/ci/precheck_header.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ azdev verify document-map
echo "Verify readme history"
python -m automation.tests.verify_readme_history

if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
# Only verify package version or PRs to Azure/azure-cli (not other forks)
if [ $TRAVIS_EVENT_TYPE == "pull_request" ] && [ $TRAVIS_REPO_SLUG == "Azure/azure-cli" ]; then
echo "Verify package versions"
python -m automation.tests.verify_package_versions
fi
Expand Down
4 changes: 4 additions & 0 deletions src/azure-cli-core/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

2.0.25
++++++
* Minor fixes

2.0.24
++++++
* Minor fixes
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli-core/azure/cli/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
from __future__ import print_function

__version__ = "2.0.24"
__version__ = "2.0.25"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}

VERSION = "2.0.24"
VERSION = "2.0.25"
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down
4 changes: 4 additions & 0 deletions src/azure-cli/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

2.0.25
++++++
* Minor fixes

2.0.24
++++++
* Minor fixes
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/azure/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
pkg_resources.declare_namespace(__name__)

__author__ = "Microsoft Corporation <python@microsoft.com>"
__version__ = "2.0.24"
__version__ = "2.0.25"
2 changes: 1 addition & 1 deletion src/azure-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}

VERSION = "2.0.24"
VERSION = "2.0.25"
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down

0 comments on commit 6d82763

Please sign in to comment.