Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md and version.rb for taglib-ruby 2.0.0 #149

Merged
merged 1 commit into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I looked around a bit and quite a few distributions are still on TagLib 1.x. The main README.md is a kind of landing page so I think we shouldn't assume people reading it are on taglib-ruby 2.x.


### MacOS

Expand Down
6 changes: 3 additions & 3 deletions lib/taglib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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('.')
Expand Down
Loading