Skip to content

Commit c763ab6

Browse files
committed
changelog: Add missing issue/PR links
1 parent 341cf9f commit c763ab6

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,36 +9,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Added
1010
- **TagExt**: `TagExt::contains`
1111
- **Ilst**: `AtomData::Bool` for the various flag atoms such as `cpil`, `pcst`, etc.
12-
- **ogg_pager**: Support for reading packets with the new `Packets` struct.
13-
- **ogg_pager**: `PageHeader` struct.
14-
- **BoundTaggedFile**: A `TaggedFile` variant bound to a `File` handle.
12+
- **ogg_pager**: Support for reading packets with the new `Packets` struct. ([PR](https://github.com/Serial-ATA/lofty-rs/pull/76))
13+
- **ogg_pager**: `PageHeader` struct. ([PR](https://github.com/Serial-ATA/lofty-rs/pull/76))
14+
- **BoundTaggedFile**: A `TaggedFile` variant bound to a `File` handle. ([issue](https://github.com/Serial-ATA/lofty-rs/issues/73)) ([PR](https://github.com/Serial-ATA/lofty-rs/pull/80))
1515

1616
### Changed
17-
- **Files**: Return the removed tag from `<File>::remove(TagType)`
17+
- **Files**: Return the removed tag from `<File>::remove(TagType)` ([PR](https://github.com/Serial-ATA/lofty-rs/pull/74))
1818
- Previously, the only way to remove and take ownership of a tag was through `TaggedFile::take`.
1919
This was not possible when using a concrete type, such as `OpusFile`.
20-
- **TaggedFile**: Renamed `TaggedFile::take` to `TaggedFile::remove`
20+
- **TaggedFile**: Renamed `TaggedFile::take` to `TaggedFile::remove` ([PR](https://github.com/Serial-ATA/lofty-rs/pull/74))
2121
- **OGG**: The reading of OGG files has switched to using packets opposed to pages, making it more
2222
spec-compliant and efficient.
2323
- **ogg_pager**: Most fields in `Page` have been separated out into the new `PageHeader` struct.
24-
- **ogg_pager**: `paginate` now works with a collection of packets.
24+
- **ogg_pager**: `paginate` now works with a collection of packets. ([PR](https://github.com/Serial-ATA/lofty-rs/pull/79))
2525
- **lofty_attr**: The `lofty_attr::LoftyFile` derive proc macro is now exported as `lofty::LoftyFile`.
26-
- **TaggedFile**: All methods have been split out into a new trait, `TaggedFileExt`.
27-
- **Accessor**: All methods returning string values now return `Cow<str>`.
26+
- **TaggedFile**: All methods have been split out into a new trait, `TaggedFileExt`. ([PR](https://github.com/Serial-ATA/lofty-rs/pull/80))
27+
- **Accessor**: All methods returning string values now return `Cow<str>`. ([PR](https://github.com/Serial-ATA/lofty-rs/pull/83))
2828
- This is an unfortunate change that needed to be made in order to accommodate the handling of the different
2929
possible text separators between ID3v2 versions.
30-
- **ID3v2**: Support reading of duplicate tags
30+
- **ID3v2**: Support reading of duplicate tags ([issue](https://github.com/Serial-ATA/lofty-rs/issues/87)) ([PR]((https://github.com/Serial-ATA/lofty-rs/pull/88)))
3131
- Previously, if we were reading a file and encountered an ID3v2 tag after having already read one,
3232
we would overwrite the last one, losing all of its information. Now we preserve all of the information,
3333
overwriting frames as necessary.
3434

3535
### Removed
3636
- **ogg_pager**: Removed `Page::new`, now pages can only be created through `ogg_pager::paginate` or
37-
`Packets::paginate`.
37+
`Packets::paginate`. ([PR](https://github.com/Serial-ATA/lofty-rs/pull/79))
3838

3939
### Fixed
4040
- **ID3v2**: The `'/'` character is no longer used as a separator ([issue](https://github.com/Serial-ATA/lofty-rs/issues/82))
41-
- **MP4**: Stopped expecting certain flags for the `gnre` atom prior to upgrading it ([issue](https://github.com/Serial-ATA/lofty-rs/issues/84))
41+
- **MP4**: Stopped expecting certain flags for the `gnre` atom prior to upgrading it ([issue](https://github.com/Serial-ATA/lofty-rs/issues/84)) ([PR](https://github.com/Serial-ATA/lofty-rs/pull/85))
4242

4343
## [0.9.0] - 2022-10-30
4444

0 commit comments

Comments
 (0)