Skip to content

Commit

Permalink
0.7.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dc3-tsd committed Mar 1, 2023
1 parent 4c674ac commit 254d854
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## [0.7.2] - 2023-02-21
- Tested on Ghidra 10.2.3
- Fixed support for fpu operands using IDA.
- Removed caching of IDA netref modules to fix memory leak issues.
Expand Down Expand Up @@ -124,7 +124,8 @@
- Initial release


[Unreleased]: https://github.com/dod-cyber-crime-center/dragodis/compare/0.7.1...HEAD
[Unreleased]: https://github.com/dod-cyber-crime-center/dragodis/compare/0.7.2...HEAD
[0.7.2]: https://github.com/dod-cyber-crime-center/dragodis/compare/0.7.1...0.7.2
[0.7.1]: https://github.com/dod-cyber-crime-center/dragodis/compare/0.7.0...0.7.1
[0.7.0]: https://github.com/dod-cyber-crime-center/dragodis/compare/0.6.0...0.7.0
[0.6.0]: https://github.com/dod-cyber-crime-center/dragodis/compare/0.5.3...0.6.0
Expand Down
1 change: 1 addition & 0 deletions docs/api/interface.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Submodules
interface.reference
interface.segment
interface.stack
interface.string
interface.structure
interface.symbol
interface.types
Expand Down
2 changes: 1 addition & 1 deletion dragodis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Import types from interface that may needed by users.
from dragodis.interface.types import *

__version__ = "0.7.1"
__version__ = "0.7.2"
9 changes: 9 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,17 @@
import nox


def _install_local_deps(session):
"""Install local dc3 dependencies."""
for path in ["../dc3_pyhidra_github"]:
if os.path.exists(path):
session.install(path)


@nox.session(python="3.8")
def test(session):
"""Run pytests"""
_install_local_deps(session)
session.install("-e", ".[testing]")
session.run("pytest")

Expand All @@ -33,6 +41,7 @@ def doc(session):
session.install("sphinx")
session.install("sphinx-rtd-theme")
session.install("myst-parser")
_install_local_deps(session)
session.install("-e", ".")

# Autodoc
Expand Down

0 comments on commit 254d854

Please sign in to comment.