Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/datamigration/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

=======
1.0.0b3
++++++
* Updated the URL to download the SQL Assessment Zip to `https://aka.ms/sqlassessmentpackage`

=======
1.0.0b2
++++++
Expand Down
2 changes: 1 addition & 1 deletion src/datamigration/azext_datamigration/manual/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def check_and_download_console_app(exePath, baseFolder):

# Downloading console app zip and extracting it
if not testPath:
zipSource = "https://sqlassess.blob.core.windows.net/app/SqlAssessment.zip"
zipSource = "https://aka.ms/sqlassessmentpackage"
zipDestination = os.path.join(baseFolder, "SqlAssessment.zip")

urllib.request.urlretrieve(zipSource, filename=zipDestination)
Expand Down
2 changes: 1 addition & 1 deletion src/datamigration/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '1.0.0b2'
VERSION = '1.0.0b3'
try:
from azext_datamigration.manual.version import VERSION
except ImportError:
Expand Down