diff --git a/ptvsd/__init__.py b/ptvsd/__init__.py index 782b117f..dd9a5c80 100644 --- a/ptvsd/__init__.py +++ b/ptvsd/__init__.py @@ -3,7 +3,7 @@ # for license information. __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" import sys import os.path diff --git a/ptvsd/__main__.py b/ptvsd/__main__.py index d6bc0568..1fb16326 100644 --- a/ptvsd/__main__.py +++ b/ptvsd/__main__.py @@ -4,7 +4,7 @@ __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" if __name__ == '__main__': diff --git a/ptvsd/debugger.py b/ptvsd/debugger.py index b5012f61..2159715c 100644 --- a/ptvsd/debugger.py +++ b/ptvsd/debugger.py @@ -10,7 +10,7 @@ import ptvsd.wrapper __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" DONT_DEBUG = [] diff --git a/ptvsd/futures.py b/ptvsd/futures.py index 55305045..29b272c4 100644 --- a/ptvsd/futures.py +++ b/ptvsd/futures.py @@ -11,7 +11,7 @@ from ptvsd.reraise import reraise __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" class Future(object): diff --git a/ptvsd/ipcjson.py b/ptvsd/ipcjson.py index 8becaa34..0f124e3d 100644 --- a/ptvsd/ipcjson.py +++ b/ptvsd/ipcjson.py @@ -21,7 +21,7 @@ import traceback __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" _TRACE = None diff --git a/ptvsd/pathutils.py b/ptvsd/pathutils.py index 5d2ca1f0..27cf1409 100644 --- a/ptvsd/pathutils.py +++ b/ptvsd/pathutils.py @@ -10,7 +10,7 @@ import platform __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" MAX_FILES_TO_CACHE = 1000 diff --git a/ptvsd/reraise.py b/ptvsd/reraise.py index ed5eb6b2..22cf59a7 100644 --- a/ptvsd/reraise.py +++ b/ptvsd/reraise.py @@ -14,4 +14,4 @@ else: __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" diff --git a/ptvsd/reraise2.py b/ptvsd/reraise2.py index 690ee7c2..6f78a04b 100644 --- a/ptvsd/reraise2.py +++ b/ptvsd/reraise2.py @@ -7,7 +7,7 @@ from __future__ import print_function, with_statement, absolute_import __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" def reraise(exc_info): diff --git a/ptvsd/reraise3.py b/ptvsd/reraise3.py index c4dbfc12..cb428acb 100644 --- a/ptvsd/reraise3.py +++ b/ptvsd/reraise3.py @@ -3,7 +3,7 @@ # for license information. __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" def reraise(exc_info): diff --git a/ptvsd/safe_repr.py b/ptvsd/safe_repr.py index fbfb027b..4b90a94b 100644 --- a/ptvsd/safe_repr.py +++ b/ptvsd/safe_repr.py @@ -3,7 +3,7 @@ # for license information. __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" import sys diff --git a/ptvsd/wrapper.py b/ptvsd/wrapper.py index a0a10107..e6a68c99 100644 --- a/ptvsd/wrapper.py +++ b/ptvsd/wrapper.py @@ -36,7 +36,7 @@ from ptvsd.pathutils import PathUnNormcase # noqa __author__ = "Microsoft Corporation " -__version__ = "4.0.0a2" +__version__ = "4.0.0a3" #def ipcjson_trace(s): diff --git a/setup.py b/setup.py index c4b40345..aea77ac2 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ PACKAGE_DATA = { setup( name='ptvsd', - version='4.0.0a2', + version='4.0.0a3', description='Visual Studio remote debugging server for Python', license='MIT', author='Microsoft Corporation',