Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
huettenhain committed Nov 20, 2024
1 parent e17ed51 commit 203ed1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
> 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.8
- The `u16` unit is no longer limited to the little-endian variant of UTF-16.
- The `snip` unit was given a new argument `--stream` which allows each offset to be relative to the end of the previously extracted data.
- Path extraction units will now match paths case-insensitively when this does not cause ambiguity.
- The `xtmsi` unit now extracts all MSI tables as CSV on top of the JSON blob.
- The `xtnsis` unit now extracts `setup.bin` alongside `setup.nsis`, the former containing a full binary copy of the extracted header.
- The `dedup` unit now has an optional argument which can specify a meta variable to deduplicate by.

## Version 0.7.7
- Adds the `httprequest` unit for parsing HTTP requests.
- Adds the `b62` unit (thanks to [@lukaskuzmiak][]).
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.7'
__version__ = '0.7.8'
__distribution__ = 'binary-refinery'

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

0 comments on commit 203ed1a

Please sign in to comment.