Skip to content

Commit

Permalink
Merge pull request #149 from robinst/taglib-2-readme
Browse files Browse the repository at this point in the history
Update README.md and version.rb for taglib-ruby 2.0.0
  • Loading branch information
jacobvosmaer authored Oct 27, 2024
2 parents ddbd238 + 7715f39 commit dbe0581
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
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'

### 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

0 comments on commit dbe0581

Please sign in to comment.