Skip to content

Commit

Permalink
Get ready for release 5.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Oct 27, 2020
1 parent 08af6f7 commit 142c0bd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
.idea/**/uiDesigner.xml
.idea/**/workspace.xml
.idea_modules/
.mypy_cache
/.cache
/.coverage
/.eggs
/.mypy_cache
/.pytest_cache
/.python-version
/.tox
Expand Down
10 changes: 9 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
5.1.0 2020-10-27
================

* Add support for Python2.7 on Ubuntu 20.04
* Bump versions for Python 3.8.6 and 3.5.10
* Release instructions moved to wiki
* `VERSION` -> `__version__` because Python prefers it that way

5.0.4 2020-08-30
================

* Add python versions 3.6.12, 3.7.9
* extended arg disassembly handling for {LOAD,STORE}_ATTR
* extended arg disassembly handling for `LOAD_ATTR` and `STORE_ATTR`

5.0.3 2020-07-28
================
Expand Down
2 changes: 1 addition & 1 deletion xdis/bin/pydisasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
type=click.Choice(["xasm", "bytes", "classic", "extended", "extended-bytes", "header"],
**case_sensitive),
)
@click.version_option(version=VERSION)
@click.version_option(version=__version__)
@click.argument("files", nargs=-1, type=click.Path(readable=True), required=True)
def main(format, files):
"""Disassembles a Python bytecode file.
Expand Down
1 change: 1 addition & 0 deletions xdis/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-

# This file is suitable for sourcing inside POSIX shell as
# well as importing into Python. That's why there is no
# space around "=" below.
Expand Down

0 comments on commit 142c0bd

Please sign in to comment.