Skip to content

Commit

Permalink
0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dc3-tsd committed Feb 27, 2023
1 parent 2a1eaa4 commit 4b43dd1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion rugosa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
import rugosa.re as re
import rugosa.yara as yara

__version__ = "0.7.0"
__version__ = "0.7.1"

0 comments on commit 4b43dd1

Please sign in to comment.