Skip to content

Commit

Permalink
chg: dev: release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
nicfit committed Mar 22, 2020
1 parent c3db1b4 commit 3eaa919
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@ Release History

.. :changelog:
v0.9.4 (2020-03-21) : The Devil Made Me Do It
-----------------------------------------------

New
~~~
- Relative volume adjustments (RVA2 and RVAD) (#399)
- Tag properties copyright and encoded_by
- Support GRP1 (Apple) frames.

Changes
~~~~~~~
- Genre serialization not ID3 v2.3 format by default, and other genre cleanup (#402)
fixes #382

Fix
~~~
- Date correctness between ID3 versions (#396)
- PopularityFrame email encoding bug.
- Plugins more featured in docs


v0.9.3 (2020-03-01) : It Dawned On Me
--------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions eyed3/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def __parse_version(v): # pragma: nocover
return ver, rel, ver_info


__version__ = "0.9.4a0"
__release_name__ = ""
__version__ = "0.9.4"
__release_name__ = "The Devil Made Me Do It"
__years__ = "2002-2020"

_, __release__, __version_info__ = __parse_version(__version__)
Expand Down
3 changes: 2 additions & 1 deletion eyed3/id3/frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -1580,7 +1580,8 @@ def render(self):

# Center (front) channel
if True in (self.adjustments.has_bass_channel, self.adjustments.has_front_center_channel):
inc_dec_bits[self.FRONT_CENTER_CHANNEL_BIT] = 1 if self.adjustments.front_center > 0 else 0
inc_dec_bits[self.FRONT_CENTER_CHANNEL_BIT] = 1 if self.adjustments.front_center > 0 \
else 0
data += dec2bytes(abs(self.adjustments.front_center), p=16)
data += dec2bytes(abs(self.adjustments.front_center_peak), p=16)

Expand Down
1 change: 0 additions & 1 deletion eyed3/utils/binfuncs.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,3 @@ def signedInt162bytes(n: int):
if MIN_INT16 <= n <= MAX_INT16:
return struct.pack(">h", n)
raise ValueError(f"Signed int16 out of range: {n}")

0 comments on commit 3eaa919

Please sign in to comment.