From 6e056d75c6edbe3edc1c0f5d23c2013bc9d0979e Mon Sep 17 00:00:00 2001 From: Joel Strait Date: Sun, 10 Jun 2018 10:03:26 -0700 Subject: [PATCH] Bumping version from 0.8.1 -> 1.0.0 --- README.markdown | 4 ++-- lib/wavefile.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.markdown b/README.markdown index 780dd73..bf44a36 100644 --- a/README.markdown +++ b/README.markdown @@ -37,9 +37,9 @@ This gem lets you read and write audio data! You can use it to create Ruby progr * Written in pure Ruby, so it's easy to include in your program. There's no need to compile a separate extension in order to use it. -# Future Release: v1.0.0 +# Current Release: v1.0.0 -Released on __TBD__, this version has these changes: +Released on June 10, 2018, this version has these changes: * **Ruby 2.0 or greater is now required** - the gem no longer works in Ruby 1.9.3. * **Backwards incompatible change:** Calling `Reader.close` on a `Reader` instance that is already closed no longer raises `ReaderClosedError`. Instead, it does nothing. Similarly, calling `Writer.close` on a `Writer` instance that is already closed no longer raises `WriterClosedError`. Thanks to [@kylekyle](https://github.com/kylekyle) for raising this as an issue. diff --git a/lib/wavefile.rb b/lib/wavefile.rb index 4aaded3..bf88e92 100644 --- a/lib/wavefile.rb +++ b/lib/wavefile.rb @@ -7,7 +7,7 @@ require 'wavefile/writer' module WaveFile - VERSION = "0.8.1" + VERSION = "1.0.0" WAVEFILE_FORMAT_CODE = "WAVE" # :nodoc: FORMAT_CODES = {:pcm => 1, :float => 3, :extensible => 65534}.freeze # :nodoc: