Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
huettenhain committed Sep 6, 2024
1 parent 1e44e70 commit 4d2370a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@
> 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.1
- The global `--iff` option was added to units; this allows you to apply the unit only to formats that it knows it can handle.
- When using refinery in code, it is now possible to pipe a `Chunk` object directly to a pipeline.
- The `csb` and `csd` shortcuts were added for common applications of `carve`.
- The `loop` unit was added; it allows repeated application of a multibin suffix to the input data.
- To match the `loop` unit, the `reduce` unit now also works with a multibin suffix rather than with a pipeline string.
- The `vstack` unit now attempts to detect stack cookies and ignores them by default.
- Adds a deobfuscator for the `kramer` obfuscator.
- The `xtmsi` unit now automatically extracts embedded CAB files and infers the file names of these subfiles from the MSI manifest.

## Version 0.7.0
- Raises minimum Python requirement to 3.8.
- Removes automatic escapes from `cfmt`; this now has to be done explicitly.
Expand Down
2 changes: 1 addition & 1 deletion refinery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.0'
__version__ = '0.7.1'
__distribution__ = 'binary-refinery'

from typing import Dict, List, Optional, Type, TypeVar, Iterable
Expand Down

0 comments on commit 4d2370a

Please sign in to comment.