Skip to content

Commit 7c29319

Browse files
committed
Get ready for release 1.2.9
1 parent 19aa3c5 commit 7c29319

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
trepan 1.2.9 2022-07-22
2+
=======================
3+
4+
* track xdis api changes and uncompyle6 improvements
5+
* Add set asmfmt for showing assembly format
6+
* Better conformance with trepan3k
7+
18
trepan 1.2.8 2022-06-05
29
=======================
310

admin-tools/make-dist-older.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ done
3333
# Tarballs can get created from the above setup, so make sure to remove them since we want
3434
# the tarball from master.
3535

36-
tarball=dist/${PACKAGE}-$__version__-tar.gz
36+
python ./setup.py sdist
37+
tarball=dist/${PACKAGE}-$__version__.tar.gz
3738
if [[ -f $tarball ]]; then
38-
rm -v dist/${PACKAGE}-$__version__-tar.gz
39+
mv -v $tarball dist/${PACKAGE}_24-$__version__.tar.gz
3940
fi

test/data/highlight.right

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(gcd.py:10): <module>
2-
-> 10 """
2+
-> 10 """
33
Set basename (short filenames) in debugger output is on.
44
Set event tracing is on.
55
Set stopping before def or class statements is off.

test/data/step.right

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
(gcd.py:10): <module>
2-
-> 10 """
2+
-> 10 """
33
Set basename (short filenames) in debugger output is on.
44
Set event tracing is on.
55
Set stopping before def or class statements is off.
66
Set confirmation of potentially dangerous operations is off.
77
line - gcd.py:10
88
line - gcd.py:11
99
(gcd.py:11): <module>
10-
-- 11 import sys
11-
11 -> import sys
10+
-- 11 import sys
11+
11 -> import sys
1212
Set stopping before def or class statements is on.
1313
line - gcd.py:13
1414
line - gcd.py:26
1515
line - gcd.py:40
1616
(gcd.py:40): <module>
17-
-- 40 if __name__=='__main__':
18-
40 -> if __name__=='__main__':
17+
-- 40 if __name__=='__main__':
18+
40 -> if __name__=='__main__':
1919
Set stopping before def or class statements is off.
2020
line - gcd.py:41
2121
(gcd.py:41): <module>
22-
-- 41 check_args()
23-
41 -> check_args()
22+
-- 41 check_args()
23+
41 -> check_args()
2424
trepan2: That's all, folks...

test/integration/test-general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_step(self):
1212
right_template = None
1313
result = Mhelper.run_debugger(
1414
testname="step",
15-
dbgr_opts="--basename --highlight=plain",
15+
dbgr_opts="--basename --highlight=plain --nx",
1616
python_file="gcd.py",
1717
right_template=right_template,
1818
)

test/integration/test-highlight.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_macro(self):
1515
right_template = None
1616
result = Mhelper.run_debugger(
1717
testname="highlight",
18-
dbgr_opts="--basename " + "--highlight=plain --nx",
18+
dbgr_opts="--basename --highlight=plain --style=none --nx",
1919
python_file="gcd.py",
2020
right_template=right_template,
2121
)

0 commit comments

Comments
 (0)