Skip to content

Commit 320f827

Browse files
committed
Prepare for 1.0.0
1 parent b17893c commit 320f827

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGES.md

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

4+
## 1.0.0 (2020-01-07)
5+
6+
* Support for TagLib >= 1.11.1 (drop support for earlier versions) (#83)
7+
* This includes a lot of new APIs and some changed APIs, see
8+
`@since 1.0.0` in the docs
9+
* Stop using tainted strings to fix warnings with Ruby 2.7 (#86)
10+
411
## 0.7.1 (2015-12-28)
512

613
* Fix compile error during gem installation on Ruby 2.3 (MRI) (#67)

docs/taglib/flac.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def initialize()
223223
attr_accessor :data
224224

225225
# Parse the picture data in the FLAC picture block format.
226-
# @return [Boolean] True if the data have been successfully been parsed, false otherwise.
226+
# @return [Boolean] True if the data has been parsed successfully, false otherwise.
227227
#
228228
# @since 1.0.0
229229
def parse(rawdata)

lib/taglib/version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module TagLib
22
module Version
3-
MAJOR = 0
4-
MINOR = 7
5-
PATCH = 1
3+
MAJOR = 1
4+
MINOR = 0
5+
PATCH = 0
66
BUILD = nil
77

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

0 commit comments

Comments
 (0)