Skip to content

Commit

Permalink
Increment version for next release (#805)
Browse files Browse the repository at this point in the history
  • Loading branch information
atbagga committed Oct 4, 2019
1 parent 5edcb95 commit c8ed36c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .azure-pipelines/azure-pipelines-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- task: AzureFileCopy@2
displayName: 'Publish wheel to azure storage'
inputs:
sourcePath: 'azure-devops/dist/azure_devops-0.13.0-py2.py3-none-any.whl'
sourcePath: 'azure-devops/dist/azure_devops-0.14.0-py2.py3-none-any.whl'
azureConnectionType: 'ConnectedServiceNameARM'
azureSubscription: 'CodeLens_Test (6bd70c51-ff44-4c89-9212-8d3f10e2a90a)'
destination: 'azureBlob'
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
vmImage: 'macOS-10.13'

steps:
- script: git checkout release-0.12.0
- script: git checkout release-0.13.0

- template: templates/run-tests.yml
parameters:
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
vmImage: 'macOS-10.13'

steps:
- script: git checkout release-0.12.0
- script: git checkout release-0.13.0

- template: templates/run-tests.yml
parameters:
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-released-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ schedules:
displayName: Daily midnight build
branches:
include:
- release-0.12.0
- release-0.14.0
always: true

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ A clear and concise description of what the bug is.
Azure Cli Version:
Use az --version
Look for something like-
azure-cli (2.0.55)
azure-cli (2.0.70)

Azure-Devops extension version:
Use az --version
Look for something like-
Extensions:
azure-devops (0.12.0)
azure-devops (0.13.0)

Steps to reproduce the behavior:
1. login using az login
Expand Down
8 changes: 4 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
{
"label": "Install extension",
"type": "shell",
"command": "az extension add --source ./dist/azure_devops-0.13.0-py2.py3-none-any.whl -y",
"command": "az extension add --source ./dist/azure_devops-0.14.0-py2.py3-none-any.whl -y",
"windows": {
"command": "az extension add --source .\\dist\\azure_devops-0.13.0-py2.py3-none-any.whl -y",
"command": "az extension add --source .\\dist\\azure_devops-0.14.0-py2.py3-none-any.whl -y",
},
"options": {
"cwd": "${workspaceRoot}/azure-devops/"
Expand All @@ -51,9 +51,9 @@
{
"label": "Update extension",
"type": "shell",
"command": "az extension add --source ./dist/azure_devops-0.13.0-py2.py3-none-any.whl -y",
"command": "az extension add --source ./dist/azure_devops-0.14.0-py2.py3-none-any.whl -y",
"windows": {
"command": "az extension add --source .\\dist\\azure_devops-0.13.0-py2.py3-none-any.whl -y",
"command": "az extension add --source .\\dist\\azure_devops-0.14.0-py2.py3-none-any.whl -y",
},
"options": {
"cwd": "${workspaceRoot}/azure-devops/"
Expand Down
4 changes: 1 addition & 3 deletions azure-devops/azext_devops/dev/boards/iteration.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,7 @@ def _handle_empty_backlog_iteration_id(ex, client, team_context):
logger.debug(ex, exc_info=True)
# Error string - "TF400497: The backlog iteration path that you specified is no longer valid."
exception_message_str = r'TF400497'
# Old message string check is for compat purpose and should be removed after 0.13.0 release.
exception_message_str_old = r'The guid specified for parameter rootIterationId must not be Guid.Empty.'
if exception_message_str in ex.message or exception_message_str_old in ex.message:
if exception_message_str in ex.message:
# Check if backlog iteration ID is empty
backlog_setting = client.get_team_settings(team_context=team_context)
if backlog_setting.backlog_iteration.id == EMPTY_UUID:
Expand Down
2 changes: 1 addition & 1 deletion azure-devops/azext_devops/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

VERSION = "0.13.0"
VERSION = "0.14.0"

0 comments on commit c8ed36c

Please sign in to comment.