mirror of
https://github.com/sile/hls_m3u8.git
synced 2024-11-21 14:50:59 +00:00
Add changelog.md
This commit is contained in:
parent
c4643c7083
commit
fa3bb30c5c
1 changed files with 15 additions and 0 deletions
15
CHANGELOG.md
Normal file
15
CHANGELOG.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# hls_m3u8
|
||||||
|
|
||||||
|
## {next}
|
||||||
|
|
||||||
|
* Performance improvements:
|
||||||
|
+ Changed `MediaPlaylist::segments` from `BTreeMap<usize, MediaSegment>`
|
||||||
|
to `StableVec<MediaSegment>`
|
||||||
|
+ Added `perf` feature, which can be used to improve performance in the future
|
||||||
|
+ Changed all instances of `String` to `Cow<'a, str>` to reduce `Clone`-ing.
|
||||||
|
|
||||||
|
* Most structs now implement [`TryFrom<&'a str>`][TryFrom] instead of [`FromStr`][FromStr].
|
||||||
|
|
||||||
|
|
||||||
|
[TryFrom]: https://doc.rust-lang.org/std/convert/trait.TryFrom.html
|
||||||
|
[FromStr]: https://doc.rust-lang.org/std/str/trait.FromStr.html
|
Loading…
Reference in a new issue