Skip to content
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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
**1.8.0**

* Standardized all item classes to use class-level `self.parse` methods,
converting `PlaybackStart`, `DateRangeItem`, `PlaylistItem`, and
`SegmentItem` from instance-level parse.
* Applied `AttributeFormatter` to `MapItem` and `PartItem`, replacing
manual format helpers with `quoted_format` and `unquoted_format`.
* Extracted `tag_value` helper in `Reader`, replacing repeated `gsub`
tag-prefix patterns.
* Normalized `Reader` lambda syntax, converting `proc` blocks to
lambdas.
* Removed `include M3u8` from `Reader` since all parsing now uses
class-level methods.
* Added YARD `@param`/`@return` documentation to all public methods
and attributes across the entire codebase.

***

**1.7.0**

* Added HLS Interstitials first-class `DateRangeItem` accessors:
Expand Down
2 changes: 1 addition & 1 deletion lib/m3u8/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

# M3u8 provides parsing, generation, and validation of m3u8 playlists
module M3u8
VERSION = '1.7.0'
VERSION = '1.8.0'
end