Skip to content

Commit

Permalink
Bumping version from 1.1.1 -> 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrait committed Dec 30, 2022
1 parent b60a5c0 commit bcdaeac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ This gem lets you read and write audio data! You can use it to create Ruby progr

# Current Release: v1.1.2

Released on TBD, this version fixes several edge case bugs related to reading a *.wav file's `"fmt "` chunk. In particular, reading a `"fmt "` chunk that has extra trailing bytes; reading a `"fmt "` chunk in WAVE_FORMAT_EXTENSIBLE format whose chunk extension is missing, incomplete, or has extra trailing bytes; and reading a `"fmt "` chunk whose chunk extension is too large to fit in the chunk. In short, some valid files that were previously rejected can now be read, and some invalid files are handled more properly.
Released on December 30, 2022, this version fixes several edge case bugs related to reading a *.wav file's `"fmt "` chunk. In particular, reading a `"fmt "` chunk that has extra trailing bytes; reading a `"fmt "` chunk in WAVE_FORMAT_EXTENSIBLE format whose chunk extension is missing, incomplete, or has extra trailing bytes; and reading a `"fmt "` chunk whose chunk extension is too large to fit in the chunk. In short, some valid files that were previously rejected can now be read, and some invalid files are handled more properly.

The full details:

Expand Down
2 changes: 1 addition & 1 deletion lib/wavefile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
require 'wavefile/writer'

module WaveFile
VERSION = "1.1.1"
VERSION = "1.1.2"

WAVEFILE_FORMAT_CODE = "WAVE" # :nodoc:
FORMAT_CODES = {pcm: 1, float: 3, extensible: 65534}.freeze # :nodoc:
Expand Down

0 comments on commit bcdaeac

Please sign in to comment.