Skip to content

Commit

Permalink
0.1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dc3-tsd committed Jun 7, 2022
1 parent 7365f99 commit 7c23a95
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# Changelog

## [Unreleased]
## [0.1.4] - 2022-06-01
- Corrected server JVM library locating for openjdk on MAC
- Ignore unmatched lines in application.properties
- Prevent parsing of application.properties on import.
- Fix bug with `libjvm.debuginfo` getting chosen as JVM library.
- Added `get_current_interpreter()` function to detect and retrieve the interpreter within the Ghidra GUI.

## 0.1.3 - 2022-03-30
## [0.1.3] - 2022-03-30
- Corrected server libjvm locating
- General cleanup

## 0.1.2 - 2022-03-18
## [0.1.2] - 2022-03-18
- Fixed issue Java Path delimiter
- Fixed issue that caused subprocess to not run correctly on non-windows systems
- Set source target Java version to 11
- Corrected JVM path on non-windows systems
- Added Mac GUI fixes

## 0.1.1 - 2022-01-27
## [0.1.1] - 2022-01-27
- Fixed issue from mishandled newline in the interpreter panel
- Fixed unstarted transaction when running code that alters a program database in the interpreter panel
- Fixed noise produced from an exception during analysis due to an analyzer using a script without acquiring a bundle host reference
Expand All @@ -26,4 +27,8 @@
## 0.1.0 - 2021-06-14
- Initial release

[Unreleased]: https://github.com/Defense-Cyber-Crime-Center/pyhidra/compare/0.1.3...HEAD
[Unreleased]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.1.4...HEAD
[0.1.4]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.1.3...0.1.4
[0.1.3]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.1.2...0.1.3
[0.1.2]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.1.1...0.1.2
[0.1.1]: https://github.com/dod-cyber-crime-center/pyhidra/compare/0.1.0...0.1.1
3 changes: 2 additions & 1 deletion pyhidra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

__version__ = "0.1.3"
__version__ = "0.1.4"

# Expose API
from .ghidra import run_script, start, open_program
from .gui import get_current_interpreter
from .launcher import DeferredPyhidraLauncher, HeadlessPyhidraLauncher, GuiPyhidraLauncher


Expand Down

0 comments on commit 7c23a95

Please sign in to comment.