Skip to content

Commit

Permalink
Get ready for release 6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Jul 21, 2024
1 parent a1e9a77 commit da6ca2b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
6.1.1 2024-07-21
=================

* Greatly improve extended-format output. (More could be done though)
* Update Python versions recognize, e.g. 3.12.4
* Add nullaryloadop for nullary load opcodes
* More code linting and type annotation


6.1.0 2024-03-15
=================

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

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

Expand Down
2 changes: 1 addition & 1 deletion xdis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# well as importing into Python. That's why there is no
# space around "=" below.
# fmt: off
__version__="6.1.1.dev0" # noqa
__version__="6.1.1" # noqa

0 comments on commit da6ca2b

Please sign in to comment.