diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cfbbcbb..4361989 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ pyFLAC Changelog ---------------- +**v2.0.0** + +* Added `seek` and `tell` callbacks to `StreamEncoder` +* Renamed the write callbacks from `callback` to `write_callback` for `StreamEncoder` and `StreamDecoder` + **v1.0.0** * Added a `StreamEncoder` to compress raw audio data on-the-fly into a FLAC byte stream diff --git a/pyflac/__init__.py b/pyflac/__init__.py index 509c8c5..4c42cfd 100644 --- a/pyflac/__init__.py +++ b/pyflac/__init__.py @@ -10,7 +10,7 @@ # ------------------------------------------------------------------------------ __title__ = 'pyFLAC' -__version__ = '1.0.1' +__version__ = '2.0.0' __all__ = [ 'StreamEncoder', 'FileEncoder',