Skip to content

Commit

Permalink
chore: Publish version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noseglasses committed Nov 19, 2021
1 parent c60ad3a commit ea53493
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0] - 2021-11-19
### Added
- CI tests of Python versions 3.5-3.10
- Command line arguments grouped in -h output
- Determine binary file type
- Refuse comparing binaries with incompatible file types
- CI test json document output by comparing against reference document
- test_requirements.txt (Python packages required for testing)
- thorough Python type checking for the whole codebase
- CI check typing using mypy
- XML export plugin
- improved error-output at CLI
- make errors and warnings more prominent
- use unicode characters for CLI output in non-Windows environments
- command line options for listing default plugins
- CI testing of plugin interface
- allow default plugins being loaded and parametrized from command line
- only output stack tarces if the --debug flag is set

### Changed
Enable comparison of elf_diff documents across binutils versions by
- stripping instruction lines (remove leading and trailing whitespaces)
- unify instruction differences in x86_64 output of objdump (0xC3 ret/retq -> ret)
- sort symbols alphabetically before assigning integer IDs

## [0.4.0] - 2021-11-05
### Added
- Badges at the top of README.md file
Expand Down
2 changes: 1 addition & 1 deletion src/elf_diff/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Initializes the elf_diff package."""
__version__ = "0.4.0"
__version__ = "0.5.0"
__author__ = "noseglasses ([email protected])"

0 comments on commit ea53493

Please sign in to comment.