Skip to content

Commit

Permalink
Get ready for release 1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Jun 5, 2022
1 parent 2c5c202 commit 000cec9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 95 deletions.
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
trepan 1.2.8 2022-06-05
=======================

* Squelch traceback on break on unparsable file
* Supporting trepan3k back to Python 2.4

trepan 1.2.5 2021-11-28
=======================

Expand Down
87 changes: 0 additions & 87 deletions admin-tools/how-to-make-a-release.md

This file was deleted.

11 changes: 4 additions & 7 deletions admin-tools/setup-master.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,22 @@ function finish {

function checkout_version {
local repo=$1
echo Checking out master on $repo ...
(cd ../$repo && git checkout master && pyenv local $PYTHON_VERSION) && \
local branch=${2:-python-2.4}
echo Checking out $branch on $repo ...
(cd ../$repo && git checkout $branch && pyenv local $PYTHON_VERSION) && \
git pull
return $?
}

export PATH=$HOME/.pyenv/bin/pyenv:$PATH
owd=$(pwd)
bs=${BASH_SOURCE[0]}
if [[ $0 == $bs ]] ; then
echo "This script should be *sourced* rather than run directly through bash"
exit 1
fi
mydir=$(dirname $bs)
fulldir=$(readlink -f $mydir)
cd $fulldir/..
checkout_version python-spark && \
checkout_version python-filecache && \
checkout_version python-xdis && \
checkout_version python-xdis python-2.4-to-2.7 && \
checkout_version python-uncompyle6 && \
git checkout master && pyenv local $PYTHON_VERSION && git pull
cd $owd
2 changes: 1 addition & 1 deletion trepan/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# This file should define a variable VERSION which we use as the
# debugger version number.

__version__="1.2.5" # noqa
__version__="1.2.8" # noqa

0 comments on commit 000cec9

Please sign in to comment.