Skip to content

Commit

Permalink
Bumping version from 0.8.1 -> 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrait committed Jun 10, 2018
1 parent 3c37de7 commit 6e056d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/wavefile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6e056d7

Please sign in to comment.