diff --git a/CHANGELOG.md b/CHANGELOG.md index 47624822..56dbf7be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ ### Development - CI: use macos-13 since macos-12 is deprecated and will be removed on December 3rd, 2024 #2173 @mr-tz +- CI: update Binary Ninja version to 4.2 #2499 @xusheng6 ### Raw diffs - [capa v7.4.0...master](https://github.com/mandiant/capa/compare/v7.4.0...master) diff --git a/tests/test_binja_features.py b/tests/test_binja_features.py index 09a9a0a1..fe7d60d3 100644 --- a/tests/test_binja_features.py +++ b/tests/test_binja_features.py @@ -63,4 +63,4 @@ def test_standalone_binja_backend(): @pytest.mark.skipif(binja_present is False, reason="Skip binja tests if the binaryninja Python API is not installed") def test_binja_version(): version = binaryninja.core_version_info() - assert version.major == 4 and version.minor == 1 + assert version.major == 4 and version.minor == 2