diff --git a/disassemblers/ofrak_angr/CHANGELOG.md b/disassemblers/ofrak_angr/CHANGELOG.md index 960950b3f..c1910fab0 100644 --- a/disassemblers/ofrak_angr/CHANGELOG.md +++ b/disassemblers/ofrak_angr/CHANGELOG.md @@ -4,8 +4,11 @@ All notable changes to `ofrak-angr` will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased](https://github.com/redballoonsecurity/ofrak/tree/master) + +## 1.0.1 - 2023-06-26 ### Fixed - Fix bug in THUMB mode handling of BasicBlocks and Instruction. ([#304](https://github.com/redballoonsecurity/ofrak/pull/304)) + ## 1.0.0 - 2022-01-25 ### Added Initial release. Hello world! diff --git a/frontend/package.json b/frontend/package.json index 87296224c..a9de48068 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "ofrak-app", - "version": "3.0.0", + "version": "3.1.0", "description": "The graphical front-end for OFRAK.", "homepage": "https://ofrak.com", "private": true, diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 9c69d3195..8183ceb9c 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -263,5 +263,5 @@ Answer by running riddle.answer('your answer here') from the console.`); {/if}
-

v3.0.0

+

v3.1.0

diff --git a/frontend/src/Pane.svelte b/frontend/src/Pane.svelte index 2b90f1c6f..ca56fdf04 100644 --- a/frontend/src/Pane.svelte +++ b/frontend/src/Pane.svelte @@ -34,7 +34,7 @@ diff --git a/ofrak_core/CHANGELOG.md b/ofrak_core/CHANGELOG.md index 72e7fe5a1..a6cc9dc21 100644 --- a/ofrak_core/CHANGELOG.md +++ b/ofrak_core/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to `ofrak` will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased](https://github.com/redballoonsecurity/ofrak/tree/master) + +## [3.1.0](https://github.com/redballoonsecurity/ofrak/compare/ofrak-v3.0.0...ofrak-v3.1.0) ### Added - Add `ElfLoadAlignmentModifier`, which reclaims unused alignment bytes between PT_LOAD segments in ELFs as free space. ([#302](https://github.com/redballoonsecurity/ofrak/pull/302)) - Add a "copy to clipboard" button to the "Show Snippet" view for easy exporting. ([#301](https://github.com/redballoonsecurity/ofrak/pull/301)) diff --git a/ofrak_core/setup.py b/ofrak_core/setup.py index ab3ec2d5c..66fec0b9a 100644 --- a/ofrak_core/setup.py +++ b/ofrak_core/setup.py @@ -40,7 +40,7 @@ def read_requirements(requirements_path): setuptools.setup( name="ofrak", - version="3.0.0", + version="3.1.0", description="A binary analysis and modification platform", packages=setuptools.find_packages(exclude=["test_ofrak", "test_ofrak.*"]), package_data={ @@ -49,7 +49,7 @@ def read_requirements(requirements_path): install_requires=[ "ofrak_io>=1.0,==1.*", "ofrak_type>=2.2.0rc0,==2.*", - "ofrak_patch_maker>=4.0.0rc0,==4.*", + "ofrak_patch_maker>=4.0.1rc0,==4.*", ] + read_requirements("requirements.txt"), extras_require={ diff --git a/ofrak_patch_maker/CHANGELOG.md b/ofrak_patch_maker/CHANGELOG.md index bfe100411..6a208d7f9 100644 --- a/ofrak_patch_maker/CHANGELOG.md +++ b/ofrak_patch_maker/CHANGELOG.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased](https://github.com/redballoonsecurity/ofrak/tree/master) +## [4.0.1](https://github.com/redballoonsecurity/ofrak/compare/ofrak-patch-maker-v.4.0.0...ofrak-patch-maker-v.4.0.1) +### Added +- Interface to iterate over all Toolchain implementations ([#287](https://github.com/redballoonsecurity/ofrak/pull/287)) + +### Fixed +- Localize magic import ([#299](https://github.com/redballoonsecurity/ofrak/pull/299)) + ## [4.0.0](https://github.com/redballoonsecurity/ofrak/compare/ofrak-patch-maker-v.3.0.0...ofrak-patch-maker-v.4.0.0) ### Changed diff --git a/ofrak_patch_maker/setup.py b/ofrak_patch_maker/setup.py index 75d92e146..e99f15180 100644 --- a/ofrak_patch_maker/setup.py +++ b/ofrak_patch_maker/setup.py @@ -31,7 +31,7 @@ def read_requirements(requirements_path): setuptools.setup( name="ofrak_patch_maker", - version="4.0.0", + version="4.0.1", description="PatchMaker tool for applying source-code patches to binaries", packages=setuptools.find_packages(exclude=("ofrak_patch_maker_test",)), package_data={"ofrak_patch_maker": ["py.typed"]},