Skip to content

Commit

Permalink
[version] version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
janscience committed Apr 19, 2024
1 parent 618819c commit d49731e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/audioio/audioconverter.py
Expand Up @@ -381,8 +381,10 @@ def main(*cargs):
samplingrate = sf.samplerate
md = sf.metadata()
locs, labels = sf.markers()
pre_history = bext_history_str(sf.encoding, sf.samplerate,
sf.channels, sf.filepath)
pre_history = bext_history_str(sf.encoding,
sf.samplerate,
sf.channels,
sf.filepath)
if sf.encoding is not None and args.encoding is None:
args.encoding = sf.encoding
except FileNotFoundError:
Expand Down
2 changes: 1 addition & 1 deletion src/audioio/version.py
@@ -1,7 +1,7 @@
""" Version and year of the audioio package.
"""

__version__ = '2.0.0'
__version__ = '2.1.0'
""" Current version of the audioio package as string 'x.y.z'. """

__year__ = '2024'
Expand Down

0 comments on commit d49731e

Please sign in to comment.