Skip to content

Commit da6ca2b

Browse files
author
rocky
committed
Get ready for release 6.1.1
1 parent a1e9a77 commit da6ca2b

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

NEWS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
6.1.1 2024-07-21
2+
=================
3+
4+
* Greatly improve extended-format output. (More could be done though)
5+
* Update Python versions recognize, e.g. 3.12.4
6+
* Add nullaryloadop for nullary load opcodes
7+
* More code linting and type annotation
8+
9+
110
6.1.0 2024-03-15
211
=================
312

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ That's what this package is for. It can "marshal load" Python
1919
bytecodes from different versions of Python. The command-line routine
2020
*pydisasm* will show disassembly output using the most modern Python
2121
disassembly conventions in a variety of user-specified formats. Some
22-
of these formats like `extended` and `extended-format` are the most
22+
of these formats like ``extended`` and ``extended-format`` are the most
2323
advanced of any Python disassembler I know of because they can show
2424
expression-tree on operators. See the [Disassembler
2525
Example][#disassembler-example] below.
@@ -38,7 +38,7 @@ magic value.
3838

3939
So if you want to write a cross-version assembler, bytecode-level
4040
analyzer, or optimizer this package may also be useful. In addition to
41-
the kinds of instruction categorization that ``dis``` offers, we have
41+
the kinds of instruction categorization that ``dis`` offers, we have
4242
additional categories for things that would be useful in such a
4343
bytecode assembler, optimizer, or decompiler.
4444

xdis/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# well as importing into Python. That's why there is no
55
# space around "=" below.
66
# fmt: off
7-
__version__="6.1.1.dev0" # noqa
7+
__version__="6.1.1" # noqa

0 commit comments

Comments
 (0)