From 358fdc1a02691beffe5b0648643f16e35389f9fc Mon Sep 17 00:00:00 2001 From: Fabio Zadrozny Date: Sun, 27 Oct 2024 14:01:17 -0300 Subject: [PATCH] Release pydevd 3.2.1 --- build_tools/pydevd_release_process.txt | 2 +- pydevd.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_tools/pydevd_release_process.txt b/build_tools/pydevd_release_process.txt index 64e756c2..56d918ff 100644 --- a/build_tools/pydevd_release_process.txt +++ b/build_tools/pydevd_release_process.txt @@ -7,7 +7,7 @@ Update cython-generated files (must update cython and then run build_tools/build Create tag: ----------- -git tag pydev_debugger_3_2_0 -a -m "PyDev.Debugger 3.2.0" +git tag pydev_debugger_3_2_1 -a -m "PyDev.Debugger 3.2.1" git push --tags diff --git a/pydevd.py b/pydevd.py index 960caea4..7757582b 100644 --- a/pydevd.py +++ b/pydevd.py @@ -173,7 +173,7 @@ if USE_CUSTOM_SYS_CURRENT_FRAMES_MAP: from _pydevd_bundle.pydevd_constants import constructed_tid_to_last_frame -__version_info__ = (3, 2, 0) +__version_info__ = (3, 2, 1) __version_info_str__ = [] for v in __version_info__: __version_info_str__.append(str(v))