diff --git a/CHANGELOG.md b/CHANGELOG.md index b0e98a4..18940c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.5.3] - 2023-11-30 +- Test support for Ghidra 10.4 +- Improved handling of plugin installation +- Added `uninstall_plugin` script to uninstall misbehaving or unwanted plugins. + ## [0.5.2] - 2023-07-17 - Added more helpful error message on failed program import. @@ -67,7 +72,8 @@ ## 0.1.0 - 2021-06-14 - Initial release -[Unreleased]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.5.2...HEAD +[Unreleased]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.5.3...HEAD +[0.5.3]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.5.2...0.5.3 [0.5.2]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.5.1...0.5.2 [0.5.1]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.5.0...0.5.1 [0.5.0]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.4.1...0.5.0 diff --git a/pyhidra/__init__.py b/pyhidra/__init__.py index bc8b566..9795295 100644 --- a/pyhidra/__init__.py +++ b/pyhidra/__init__.py @@ -1,5 +1,5 @@ -__version__ = "0.5.2" +__version__ = "0.5.3" # Expose API from .core import run_script, start, open_program