From f2947d59ed20e1bc1458094d018d6e4d89b13426 Mon Sep 17 00:00:00 2001 From: Brian O'Neill Date: Tue, 1 Aug 2017 14:00:59 -0700 Subject: [PATCH 1/2] Update sqltoolsservice with Azure SQL DW scripting fix --- mssqltoolsservice/buildwheels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mssqltoolsservice/buildwheels.py b/mssqltoolsservice/buildwheels.py index c6b4ab9..c57f0ca 100644 --- a/mssqltoolsservice/buildwheels.py +++ b/mssqltoolsservice/buildwheels.py @@ -17,7 +17,7 @@ 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_PLATFORMS = { From 3d54a641c3ff4045cbd617b1b7086eafc9e4b038 Mon Sep 17 00:00:00 2001 From: Brian O'Neill Date: Tue, 1 Aug 2017 14:01:51 -0700 Subject: [PATCH 2/2] Bump version to 1.0.0a18 --- .bumpversion.cfg | 2 +- mssqlscripter/__init__.py | 2 +- mssqltoolsservice/mssqltoolsservice/__init__.py | 2 +- mssqltoolsservice/setup.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bc26959..50835a7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0a15 +current_version = 1.0.0a18 parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P.*))(?P\d+) serialize = {major}.{minor}.{patch}{release}{release_version} diff --git a/mssqlscripter/__init__.py b/mssqlscripter/__init__.py index 3d2a8dd..154b81d 100644 --- a/mssqlscripter/__init__.py +++ b/mssqlscripter/__init__.py @@ -3,4 +3,4 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -__version__ = '1.0.0a15' +__version__ = '1.0.0a18' diff --git a/mssqltoolsservice/mssqltoolsservice/__init__.py b/mssqltoolsservice/mssqltoolsservice/__init__.py index ccde339..d08039a 100644 --- a/mssqltoolsservice/mssqltoolsservice/__init__.py +++ b/mssqltoolsservice/mssqltoolsservice/__init__.py @@ -9,7 +9,7 @@ import os import platform -__version__ = '1.0.0a15' +__version__ = '1.0.0a18' def get_executable_path(): diff --git a/mssqltoolsservice/setup.py b/mssqltoolsservice/setup.py index 5da871b..01fe5bb 100644 --- a/mssqltoolsservice/setup.py +++ b/mssqltoolsservice/setup.py @@ -12,7 +12,7 @@ # This version number is in place in two places and must be in sync with # 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 # uploading releases with mismatched versions. diff --git a/setup.py b/setup.py index 70a7df2..aa0874c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ # This version number is in place in two places and must be in sync with # 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. # This will prevent uploading releases with mismatched versions. This will