Skip to content

Commit

Permalink
increment ofrak_core version number (#207)
Browse files Browse the repository at this point in the history
* increment ofrak_core version number

* fix bug: reactively update dataLength

---------

Co-authored-by: edward <[email protected]>
  • Loading branch information
EdwardLarson and Edward-Larson authored Feb 3, 2023
1 parent d0d58af commit d2967aa
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ofrak-app",
"version": "2.1.2",
"version": "2.2.0",
"description": "The graphical front-end for OFRAK.",
"homepage": "https://ofrak.com",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -212,5 +212,5 @@ Answer by running riddle.answer('your answer here') from the console.`);
{/if}

<div class="bottomright">
<p><a href="https://ofrak.com" target="_blank" rel="noreferrer">v2.1.1</a></p>
<p><a href="https://ofrak.com" target="_blank" rel="noreferrer">v2.2.0</a></p>
</div>
2 changes: 1 addition & 1 deletion frontend/src/JumpToOffset.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
const alignment = 16;
let dataLength = 0;
dataPromise.then((data) => {
$: dataPromise.then((data) => {
dataLength = data.byteLength;
});
Expand Down
2 changes: 2 additions & 0 deletions ofrak_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

## [2.2.0](https://github.com/redballoonsecurity/ofrak/compare/ofrak-v2.1.1...ofrak-v2.2.0))
### Fixed
- Fix bug in data service that can cause mangled internal state [#197](https://github.com/redballoonsecurity/ofrak/pull/197)
- Fix long-broken `OFRAK.set_id_service` [#198](https://github.com/redballoonsecurity/ofrak/pull/198)
Expand Down
2 changes: 1 addition & 1 deletion ofrak_core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def run(self):

setuptools.setup(
name="ofrak",
version="2.1.1",
version="2.2.0",
description="A binary analysis and modification platform",
packages=setuptools.find_packages(exclude=["test_ofrak", "test_ofrak.*"]),
package_data={
Expand Down

0 comments on commit d2967aa

Please sign in to comment.