Skip to content

Commit d03a5dd

Browse files
committed
Merge pull request #60 from robinst/release/0.7.0
Release 0.7.0
2 parents 1ba2144 + 46824fe commit d03a5dd

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changes in Releases of taglib-ruby
22
==================================
33

4+
## 0.7.0 (2014-08-21)
5+
6+
* Add support for TagLib::RIFF::AIFF (#52, by @tchev)
7+
* Add support for TagLib::RIFF::WAV (#57, by @tchev)
8+
* Associate filesystem encoding to filename strings
9+
* Allow CXX override during gem installation
10+
* Try to detect location of vendor/taglib on Heroku (#28)
11+
* Documentation updates
12+
413
## 0.6.0 (2013-04-26)
514

615
* Add support for TagLib::MP4 (#3, by @jacobvosmaer)

lib/taglib/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module TagLib
22
module Version
33
MAJOR = 0
4-
MINOR = 6
4+
MINOR = 7
55
PATCH = 0
66
BUILD = nil
77

taglib-ruby.gemspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require 'taglib/version'
77
Gem::Specification.new do |s|
88
s.name = "taglib-ruby"
99
s.version = TagLib::Version::STRING
10-
s.authors = ["Robin Stocker", "Jacob Vosmaer"]
10+
s.authors = ["Robin Stocker", "Jacob Vosmaer", "Thomas Chevereau"]
1111
s.email = ["[email protected]"]
1212
s.homepage = "http://robinst.github.io/taglib-ruby/"
1313
s.licenses = ["MIT"]
@@ -147,6 +147,7 @@ DESC
147147
"test/fileref_open_test.rb",
148148
"test/fileref_properties_test.rb",
149149
"test/fileref_write_test.rb",
150+
"test/file_test.rb",
150151
"test/flac_file_test.rb",
151152
"test/flac_file_write_test.rb",
152153
"test/id3v1_tag_test.rb",
@@ -156,6 +157,7 @@ DESC
156157
"test/id3v2_relative_volume_test.rb",
157158
"test/id3v2_tag_test.rb",
158159
"test/id3v2_unicode_test.rb",
160+
"test/id3v2_unknown_frames_test.rb",
159161
"test/id3v2_write_test.rb",
160162
"test/mp4_file_test.rb",
161163
"test/mp4_file_write_test.rb",

0 commit comments

Comments
 (0)