Skip to content

Commit bcdaeac

Browse files
committed
Bumping version from 1.1.1 -> 1.1.2
1 parent b60a5c0 commit bcdaeac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ This gem lets you read and write audio data! You can use it to create Ruby progr
7070

7171
# Current Release: v1.1.2
7272

73-
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.
73+
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.
7474

7575
The full details:
7676

lib/wavefile.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
require 'wavefile/writer'
1111

1212
module WaveFile
13-
VERSION = "1.1.1"
13+
VERSION = "1.1.2"
1414

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

0 commit comments

Comments
 (0)