From 791b1ac04f1c6173865151bd2a7c8634900a2a62 Mon Sep 17 00:00:00 2001 From: alphillips-lab <52300472+alphillips-lab@users.noreply.github.com> Date: Fri, 4 Oct 2024 17:06:42 +0100 Subject: [PATCH] Revert update to version number, add changes to 0.7.4 changelog --- CHANGELOG.md | 4 +--- refinery/__init__.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afcb6cdf10..cf87a09dc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,11 @@ > If a release contains only bugfix, it is marked as a 'bugfix release'. > Otherwise, the changelog entries highlight only new or changed functionality. -## Version 0.7.5 -- The a3x unit now is capable of decrypting EA05 formatted scripts, previously only capable of decrypting EA06 formatted scripts. - ## Version 0.7.4 - The `--join` option of all path extraction units has been improved for producing paths that can always be used for dumping data to disk. This includes units to unpack archives, resources, or other embedded data that can be referenced by a name. - The `ef` unit has a new option that specifies whether to follow (directory) symlinks / junctions or not. - The key scaling method for `autoxor` was adjusted to produce less false positives when scanning for larger keys. +- The a3x unit now is capable of decrypting EA05 formatted scripts, previously only capable of decrypting EA06 formatted scripts. ## Version 0.7.3 - bugfix release diff --git a/refinery/__init__.py b/refinery/__init__.py index 5172640b7c..067c215853 100644 --- a/refinery/__init__.py +++ b/refinery/__init__.py @@ -34,7 +34,7 @@ 4. `refinery.units`: writing custom units, add command-line arguments, and how to use refinery units within Python code. """ -__version__ = '0.7.5' +__version__ = '0.7.3' __distribution__ = 'binary-refinery' from typing import Dict, List, Optional, Type, TypeVar, Iterable