Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
huettenhain committed Oct 30, 2024
1 parent 00718d6 commit eec9304
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
> 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.6
- Adds the `brotli` decompression unit.
- The `pym` unit was added which provides an interface to Python's marshal serialization.
- The units `xsalsa`, `xchacha`, and `chacha20poly1305` were added. The latter only performs the decryption part of the scheme.
- Refinery pipelines used in Python code will now preserve the scope of a `Chunk` object when one is provided as input.
- The argument handlers `prng` and `rng` were added for random number generation.

## Version 0.7.5
- The `b65536` unit was added (thanks to [@alphillips-lab][]).

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.5'
__version__ = '0.7.6'
__distribution__ = 'binary-refinery'

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

0 comments on commit eec9304

Please sign in to comment.