Skip to content

Commit 000cec9

Browse files
committed
Get ready for release 1.2.8
1 parent 2c5c202 commit 000cec9

File tree

4 files changed

+11
-95
lines changed

4 files changed

+11
-95
lines changed

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
trepan 1.2.8 2022-06-05
2+
=======================
3+
4+
* Squelch traceback on break on unparsable file
5+
* Supporting trepan3k back to Python 2.4
6+
17
trepan 1.2.5 2021-11-28
28
=======================
39

admin-tools/how-to-make-a-release.md

Lines changed: 0 additions & 87 deletions
This file was deleted.

admin-tools/setup-master.sh

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,22 @@ function finish {
88

99
function checkout_version {
1010
local repo=$1
11-
echo Checking out master on $repo ...
12-
(cd ../$repo && git checkout master && pyenv local $PYTHON_VERSION) && \
11+
local branch=${2:-python-2.4}
12+
echo Checking out $branch on $repo ...
13+
(cd ../$repo && git checkout $branch && pyenv local $PYTHON_VERSION) && \
1314
git pull
1415
return $?
1516
}
1617

1718
export PATH=$HOME/.pyenv/bin/pyenv:$PATH
1819
owd=$(pwd)
1920
bs=${BASH_SOURCE[0]}
20-
if [[ $0 == $bs ]] ; then
21-
echo "This script should be *sourced* rather than run directly through bash"
22-
exit 1
23-
fi
2421
mydir=$(dirname $bs)
2522
fulldir=$(readlink -f $mydir)
2623
cd $fulldir/..
2724
checkout_version python-spark && \
2825
checkout_version python-filecache && \
29-
checkout_version python-xdis && \
26+
checkout_version python-xdis python-2.4-to-2.7 && \
3027
checkout_version python-uncompyle6 && \
3128
git checkout master && pyenv local $PYTHON_VERSION && git pull
3229
cd $owd

trepan/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# This file should define a variable VERSION which we use as the
55
# debugger version number.
66

7-
__version__="1.2.5" # noqa
7+
__version__="1.2.8" # noqa

0 commit comments

Comments
 (0)