diff --git a/build_tools/pydevd_release_process.txt b/build_tools/pydevd_release_process.txt index 221c479b..a2c11534 100644 --- a/build_tools/pydevd_release_process.txt +++ b/build_tools/pydevd_release_process.txt @@ -5,7 +5,7 @@ __version_info__ in pydevd.py Create tag: ----------- -git tag pydev_debugger_3_0_0 -a -m "PyDev.Debugger 3.0.0" +git tag pydev_debugger_3_0_1 -a -m "PyDev.Debugger 3.0.1" git push --tags diff --git a/pydevd.py b/pydevd.py index 99796e0c..7d162ea5 100644 --- a/pydevd.py +++ b/pydevd.py @@ -119,7 +119,7 @@ if USE_CUSTOM_SYS_CURRENT_FRAMES_MAP: from _pydevd_bundle.pydevd_constants import constructed_tid_to_last_frame -__version_info__ = (3, 0, 0) +__version_info__ = (3, 0, 1) __version_info_str__ = [] for v in __version_info__: __version_info_str__.append(str(v))