File tree Expand file tree Collapse file tree 6 files changed +11
-1
lines changed Expand file tree Collapse file tree 6 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
2
current_version = 1.0.0a21
3
+
3
4
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))(?P<release_version>\d+)
4
5
serialize =
5
6
{major}.{minor}.{patch}{release}{release_version}
Original file line number Diff line number Diff line change 3
3
# Licensed under the MIT License. See License.txt in the project root for license information.
4
4
# --------------------------------------------------------------------------------------------
5
5
6
+
6
7
__version__ = '1.0.0a21'
8
+
Original file line number Diff line number Diff line change 17
17
from urllib .request import urlopen
18
18
19
19
20
+
20
21
DOWNLOAD_URL_BASE = 'https://mssqlscripter.blob.core.windows.net/sqltoolsservice-10-12-2017/'
21
22
22
23
# Supported platform key's must match those in mssqlscript's setup.py.
25
26
'OSX_10_11_64' : DOWNLOAD_URL_BASE + 'Microsoft.SqlTools.ServiceLayer-osx-x64-netcoreapp2.0.tar.gz' ,
26
27
'Windows_7_64' : DOWNLOAD_URL_BASE + 'Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip' ,
27
28
'Windows_7_86' : DOWNLOAD_URL_BASE + 'Microsoft.SqlTools.ServiceLayer-win-x86-netcoreapp2.0.zip'
28
- }
29
+
29
30
30
31
CURRENT_DIRECTORY = os .path .abspath (os .path .join (os .path .abspath (__file__ ), '..' ))
31
32
BUILD_DIRECTORY = os .path .abspath (os .path .join (CURRENT_DIRECTORY , 'build' ))
Original file line number Diff line number Diff line change 9
9
import os
10
10
import platform
11
11
12
+
12
13
__version__ = '1.0.0a21'
13
14
14
15
16
+
15
17
def get_executable_path ():
16
18
"""
17
19
Find mssqltoolsservice executable relative to this package.
Original file line number Diff line number Diff line change 12
12
13
13
# This version number is in place in two places and must be in sync with
14
14
# mssqlscripter's version in setup.py.
15
+
15
16
MSSQLTOOLSSERVICE_VERSION = '1.0.0a21'
16
17
18
+
17
19
# If we have source, validate version numbers match to prevent
18
20
# uploading releases with mismatched versions.
19
21
try :
Original file line number Diff line number Diff line change 14
14
15
15
# This version number is in place in two places and must be in sync with
16
16
# mssqltoolsservice's version in setup.py.
17
+
17
18
MSSQLSCRIPTER_VERSION = '1.0.0a21'
18
19
20
+
19
21
# If we have the source, validate our setup version matches source version.
20
22
# This will prevent uploading releases with mismatched versions. This will
21
23
# also ensure mssqlscripter's version is in sync with mssqltoolsservice.
You can’t perform that action at this time.
0 commit comments