Skip to content

Commit 3efe809

Browse files
committed
Bumping version from 1.0.1 -> 1.1.0
1 parent 4dbcd2e commit 3efe809

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.0
7272

73-
Released on TBD, this version has these changes:
73+
Released on January 20, 2019, this version has these changes:
7474

7575
* **Can read `smpl` chunk data from files that contain this kind of chunk.** If a *.wav file contains a `smpl` chunk, then `Reader.sampler_info` will return a `SamplerInfo` instance with the relevant data (or `nil` otherwise). Thanks to [@henrikj242](https://github.com/henrikj242) for suggesting this feature and providing the base implementation.
7676
* **More informative errors raised by `Reader.new`**. When attempting to read an invalid file, the error message now provides more detail about why the file is invalid.

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.0.1"
13+
VERSION = "1.1.0"
1414

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

0 commit comments

Comments
 (0)