Skip to content

Commit dbe0581

Browse files
authored
Merge pull request #149 from robinst/taglib-2-readme
Update README.md and version.rb for taglib-ruby 2.0.0
2 parents ddbd238 + 7715f39 commit dbe0581

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@ installed with header files (and a C++ compiler of course):
3030
* Brew: `brew install taglib`
3131
* MacPorts: `sudo port install taglib`
3232

33-
Then do:
33+
Then install the latest taglib-ruby 1.x by running:
3434

35-
gem install taglib-ruby
35+
gem install taglib-ruby --version '< 2'
36+
37+
If you are using TagLib 2.0.1 or higher, you need to install taglib-ruby 2.x instead:
38+
39+
gem install taglib-ruby --version '>= 2'
3640

3741
### MacOS
3842

lib/taglib/version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
module TagLib
44
module Version
5-
MAJOR = 1
6-
MINOR = 1
7-
PATCH = 3
5+
MAJOR = 2
6+
MINOR = 0
7+
PATCH = 0
88
BUILD = nil
99

1010
STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')

0 commit comments

Comments
 (0)