Fix for Azure SQL Data Warehouse (#125)
* Update sqltoolsservice with Azure SQL DW scripting fix * Bump version to 1.0.0a18
This commit is contained in:
Родитель
7fa7367155
Коммит
b31bba4b2a
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 1.0.0a15
|
current_version = 1.0.0a18
|
||||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>.*))(?P<release_version>\d+)
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>.*))(?P<release_version>\d+)
|
||||||
serialize =
|
serialize =
|
||||||
{major}.{minor}.{patch}{release}{release_version}
|
{major}.{minor}.{patch}{release}{release_version}
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
# Licensed under the MIT License. See License.txt in the project root for license information.
|
# Licensed under the MIT License. See License.txt in the project root for license information.
|
||||||
# --------------------------------------------------------------------------------------------
|
# --------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
__version__ = '1.0.0a15'
|
__version__ = '1.0.0a18'
|
||||||
|
|
|
@ -17,7 +17,7 @@ install_aliases()
|
||||||
from urllib.request import urlopen
|
from urllib.request import urlopen
|
||||||
|
|
||||||
|
|
||||||
DOWNLOAD_URL_BASE = 'https://mssqlscripter.blob.core.windows.net/sqltoolsservice-07-26-2017/'
|
DOWNLOAD_URL_BASE = 'https://mssqlscripter.blob.core.windows.net/sqltoolsservice-08-01-2017/'
|
||||||
|
|
||||||
# Supported platform key's must match those in mssqlscript's setup.py.
|
# Supported platform key's must match those in mssqlscript's setup.py.
|
||||||
SUPPORTED_PLATFORMS = {
|
SUPPORTED_PLATFORMS = {
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
|
|
||||||
__version__ = '1.0.0a15'
|
__version__ = '1.0.0a18'
|
||||||
|
|
||||||
|
|
||||||
def get_executable_path():
|
def get_executable_path():
|
||||||
|
|
|
@ -12,7 +12,7 @@ import sys
|
||||||
|
|
||||||
# This version number is in place in two places and must be in sync with
|
# This version number is in place in two places and must be in sync with
|
||||||
# mssqlscripter's version in setup.py.
|
# mssqlscripter's version in setup.py.
|
||||||
MSSQLTOOLSSERVICE_VERSION = '1.0.0a15'
|
MSSQLTOOLSSERVICE_VERSION = '1.0.0a18'
|
||||||
|
|
||||||
# If we have source, validate version numbers match to prevent
|
# If we have source, validate version numbers match to prevent
|
||||||
# uploading releases with mismatched versions.
|
# uploading releases with mismatched versions.
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -14,7 +14,7 @@ from setuptools import setup
|
||||||
|
|
||||||
# This version number is in place in two places and must be in sync with
|
# This version number is in place in two places and must be in sync with
|
||||||
# mssqltoolsservice's version in setup.py.
|
# mssqltoolsservice's version in setup.py.
|
||||||
MSSQLSCRIPTER_VERSION = '1.0.0a15'
|
MSSQLSCRIPTER_VERSION = '1.0.0a18'
|
||||||
|
|
||||||
# If we have the source, validate our setup version matches source version.
|
# If we have the source, validate our setup version matches source version.
|
||||||
# This will prevent uploading releases with mismatched versions. This will
|
# This will prevent uploading releases with mismatched versions. This will
|
||||||
|
|
Загрузка…
Ссылка в новой задаче