Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.

Commit b31bba4

Browse files
authored
Fix for Azure SQL Data Warehouse (#125)
* Update sqltoolsservice with Azure SQL DW scripting fix * Bump version to 1.0.0a18
1 parent 7fa7367 commit b31bba4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0a15
2+
current_version = 1.0.0a18
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>.*))(?P<release_version>\d+)
44
serialize =
55
{major}.{minor}.{patch}{release}{release_version}

mssqlscripter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# Licensed under the MIT License. See License.txt in the project root for license information.
44
# --------------------------------------------------------------------------------------------
55

6-
__version__ = '1.0.0a15'
6+
__version__ = '1.0.0a18'

mssqltoolsservice/buildwheels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from urllib.request import urlopen
1818

1919

20-
DOWNLOAD_URL_BASE = 'https://mssqlscripter.blob.core.windows.net/sqltoolsservice-07-26-2017/'
20+
DOWNLOAD_URL_BASE = 'https://mssqlscripter.blob.core.windows.net/sqltoolsservice-08-01-2017/'
2121

2222
# Supported platform key's must match those in mssqlscript's setup.py.
2323
SUPPORTED_PLATFORMS = {

mssqltoolsservice/mssqltoolsservice/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import os
1010
import platform
1111

12-
__version__ = '1.0.0a15'
12+
__version__ = '1.0.0a18'
1313

1414

1515
def get_executable_path():

mssqltoolsservice/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# This version number is in place in two places and must be in sync with
1414
# mssqlscripter's version in setup.py.
15-
MSSQLTOOLSSERVICE_VERSION = '1.0.0a15'
15+
MSSQLTOOLSSERVICE_VERSION = '1.0.0a18'
1616

1717
# If we have source, validate version numbers match to prevent
1818
# uploading releases with mismatched versions.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# This version number is in place in two places and must be in sync with
1616
# mssqltoolsservice's version in setup.py.
17-
MSSQLSCRIPTER_VERSION = '1.0.0a15'
17+
MSSQLSCRIPTER_VERSION = '1.0.0a18'
1818

1919
# If we have the source, validate our setup version matches source version.
2020
# This will prevent uploading releases with mismatched versions. This will

0 commit comments

Comments
 (0)