From 4b43dd1b83f79a24e6d96fcccab60a769b9b8b37 Mon Sep 17 00:00:00 2001 From: DC3-TSD <12175126+DC3-DCCI@users.noreply.github.com> Date: Tue, 21 Feb 2023 13:23:36 -0500 Subject: [PATCH] 0.7.1 release --- CHANGELOG.md | 5 +++-- noxfile.py | 9 +++++++++ rugosa/__init__.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1f8a84..6988ddf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [Unreleased] +## [0.7.1] - 2023-02-21 - Fixed emulation of floating point opcodes. - Fixed bug in Ghidra plugin setup handling. @@ -99,7 +99,8 @@ All notable changes to this project will be documented in this file. - Migrated the majority of Kordesii functionality to work with Dragodis. -[Unreleased]: https://github.com/dod-cyber-crime-center/rugosa/compare/0.7.0...HEAD +[Unreleased]: https://github.com/dod-cyber-crime-center/rugosa/compare/0.7.1...HEAD +[0.7.1]: https://github.com/dod-cyber-crime-center/rugosa/compare/0.7.0...0.7.1 [0.7.0]: https://github.com/dod-cyber-crime-center/rugosa/compare/0.6.1...0.7.0 [0.6.1]: https://github.com/dod-cyber-crime-center/rugosa/compare/0.6.0...0.6.1 [0.6.0]: https://github.com/dod-cyber-crime-center/rugosa/compare/0.5.1...0.6.0 diff --git a/noxfile.py b/noxfile.py index 73a6e04..b63af0c 100644 --- a/noxfile.py +++ b/noxfile.py @@ -5,13 +5,22 @@ 1. Install "nox" 2. Run "nox" or "nox -s test" """ +import os import nox +def _install_local_deps(session): + """Install local dc3 dependencies.""" + for path in ["../dc3_pyhidra_github", "../dc3_dragodis_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") diff --git a/rugosa/__init__.py b/rugosa/__init__.py index bb373dc..d226761 100644 --- a/rugosa/__init__.py +++ b/rugosa/__init__.py @@ -5,4 +5,4 @@ import rugosa.re as re import rugosa.yara as yara -__version__ = "0.7.0" +__version__ = "0.7.1"