Skip to content

Commit b893744

Browse files
authored
Merge branch 'master' into dev
2 parents 416b19d + ad37035 commit b893744

File tree

6 files changed

+11
-1
lines changed

6 files changed

+11
-1
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[bumpversion]
22
current_version = 1.0.0a21
3+
34
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))(?P<release_version>\d+)
45
serialize =
56
{major}.{minor}.{patch}{release}{release_version}

mssqlscripter/__init__.py

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

6+
67
__version__ = '1.0.0a21'
8+

mssqltoolsservice/buildwheels.py

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

1919

20+
2021
DOWNLOAD_URL_BASE = 'https://mssqlscripter.blob.core.windows.net/sqltoolsservice-10-12-2017/'
2122

2223
# Supported platform key's must match those in mssqlscript's setup.py.
@@ -25,7 +26,7 @@
2526
'OSX_10_11_64': DOWNLOAD_URL_BASE + 'Microsoft.SqlTools.ServiceLayer-osx-x64-netcoreapp2.0.tar.gz',
2627
'Windows_7_64': DOWNLOAD_URL_BASE + 'Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip',
2728
'Windows_7_86': DOWNLOAD_URL_BASE + 'Microsoft.SqlTools.ServiceLayer-win-x86-netcoreapp2.0.zip'
28-
}
29+
2930

3031
CURRENT_DIRECTORY = os.path.abspath(os.path.join(os.path.abspath(__file__), '..'))
3132
BUILD_DIRECTORY = os.path.abspath(os.path.join(CURRENT_DIRECTORY, 'build'))

mssqltoolsservice/mssqltoolsservice/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
import os
1010
import platform
1111

12+
1213
__version__ = '1.0.0a21'
1314

1415

16+
1517
def get_executable_path():
1618
"""
1719
Find mssqltoolsservice executable relative to this package.

mssqltoolsservice/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
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+
1516
MSSQLTOOLSSERVICE_VERSION = '1.0.0a21'
1617

18+
1719
# If we have source, validate version numbers match to prevent
1820
# uploading releases with mismatched versions.
1921
try:

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@
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+
1718
MSSQLSCRIPTER_VERSION = '1.0.0a21'
1819

20+
1921
# If we have the source, validate our setup version matches source version.
2022
# This will prevent uploading releases with mismatched versions. This will
2123
# also ensure mssqlscripter's version is in sync with mssqltoolsservice.

0 commit comments

Comments
 (0)