diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c69c0293..a0c53ad9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,8 +12,6 @@ ### Bug Fixes -- handle IDA 8.3/8.4 vs. 9.0 API change @mr-tz - ### capa Explorer Web ### capa Explorer IDA Pro plugin @@ -21,8 +19,20 @@ ### Development ### Raw diffs -- [capa v8.0.0...master](https://github.com/mandiant/capa/compare/v8.0.0...master) -- [capa-rules v8.0.0...master](https://github.com/mandiant/capa-rules/compare/v8.0.0...master) +- [capa v8.0.1...master](https://github.com/mandiant/capa/compare/v8.0.1...master) +- [capa-rules v8.0.1...master](https://github.com/mandiant/capa-rules/compare/v8.0.1...master) + +## v8.0.1 + +This point release fixes an issue with the IDAPython API to now handle IDA Pro 8.3, 8.4, and 9.0 correctly. + +### Bug Fixes + +- handle IDA 8.3/8.4 vs. 9.0 API change @mr-tz + +### Raw diffs +- [capa v8.0.0...v8.0.1](https://github.com/mandiant/capa/compare/v8.0.0...v8.0.1) +- [capa-rules v8.0.0...v8.0.1](https://github.com/mandiant/capa-rules/compare/v8.0.0...v8.0.1) ## v8.0.0 diff --git a/capa/version.py b/capa/version.py index 2ba6cf8f5..4e8b8beea 100644 --- a/capa/version.py +++ b/capa/version.py @@ -5,7 +5,7 @@ # Unless required by applicable law or agreed to in writing, software distributed under the License # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and limitations under the License. -__version__ = "8.0.0" +__version__ = "8.0.1" def get_major_version(): diff --git a/web/public/index.html b/web/public/index.html index c3b48ff53..6537ffa7f 100644 --- a/web/public/index.html +++ b/web/public/index.html @@ -215,6 +215,11 @@

Rule Updates

Tool Updates

+

v8.0.0 (2024-12-09)

+

+ This point release fixes an issue with the IDAPython API to now handle IDA Pro 8.3, 8.4, and 9.0 correctly. +

+

v8.0.0 (2024-12-09)

capa v8.0.0 adds support for IDA Pro 9.0 (and idalib). The release comes with various improvements and bug fixes for the Binary Ninja backend (including to load with database files) -- thanks to @xusheng6.