From 7715f391d1a1345e329b4e3a08918efc163e568d Mon Sep 17 00:00:00 2001 From: Jacob Vosmaer Date: Sat, 26 Oct 2024 14:05:17 +0200 Subject: [PATCH] Update README.md and version.rb for taglib-ruby 2.0.0 --- README.md | 8 ++++++-- lib/taglib/version.rb | 6 +++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 922b186..d24f7b7 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,13 @@ installed with header files (and a C++ compiler of course): * Brew: `brew install taglib` * MacPorts: `sudo port install taglib` -Then do: +Then install the latest taglib-ruby 1.x by running: - gem install taglib-ruby + gem install taglib-ruby --version '< 2' + +If you are using TagLib 2.0.1 or higher, you need to install taglib-ruby 2.x instead: + + gem install taglib-ruby --version '>= 2' ### MacOS diff --git a/lib/taglib/version.rb b/lib/taglib/version.rb index 9a61f7c..c05887b 100644 --- a/lib/taglib/version.rb +++ b/lib/taglib/version.rb @@ -2,9 +2,9 @@ module TagLib module Version - MAJOR = 1 - MINOR = 1 - PATCH = 3 + MAJOR = 2 + MINOR = 0 + PATCH = 0 BUILD = nil STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')