Skip to content

Commit 5b60803

Browse files
authored
Add a CHANGELOG (#80)
Based on linebender/vello#604
1 parent 56dd32c commit 5b60803

File tree

2 files changed

+76
-1
lines changed

2 files changed

+76
-1
lines changed

CHANGELOG.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<!-- Instructions
2+
3+
This changelog follows the patterns described here: <https://keepachangelog.com/en/>.
4+
5+
Subheadings to categorize changes are `added, changed, deprecated, removed, fixed, security`.
6+
7+
-->
8+
9+
# Changelog
10+
11+
The latest published Parley release is [0.1.0](#010---2024-05-01) which was released on 2024-05-01.
12+
You can find its changes [documented below](#010---2024-05-01).
13+
14+
## [Unreleased]
15+
16+
This release has an [MSRV] of 1.70.
17+
18+
### Added
19+
20+
#### Parley
21+
22+
- Example using tiny-skia which renders into a png ([#55] by [@nicoburns])
23+
- Breaking change: There is now a blanket implementation for `Brush`.
24+
- A swash example which renders into a png ([#54] by [@nicoburns])
25+
26+
### Changed
27+
28+
#### General
29+
30+
- Repository layout updated to match Linebender standard ([#59] by [@waywardmonkeys])
31+
32+
#### Parley
33+
34+
- Emoji clusters now get an Emoji family added by default ([#56] by [@dfrg])
35+
36+
#### Fontique
37+
38+
- Removed unsafe code from fontconfig cache ([#78] by [@waywardmonkeys])
39+
40+
### Fixed
41+
42+
#### Fontique
43+
44+
- Search correct paths for fonts on Apple platforms ([#71] by [@waywardmonkeys])
45+
46+
### Removed
47+
48+
#### Fontique
49+
50+
- Breaking change: removed conversion to/from `icu_properties::Script` for `fontique::Script` ([#72] by [@waywardmonkeys])
51+
- This can be restored by using the `icu_properties` feature of `fontique`.
52+
53+
## [0.1.0] - 2024-05-01
54+
55+
This release has an [MSRV] of 1.70.
56+
57+
- Initial release
58+
59+
[MSRV]: README.md#minimum-supported-rust-version-msrv
60+
61+
[@nicoburns]: https://github.com/nicoburns
62+
[@dfrg]: https://github.com/dfrg
63+
[@waywardmonkeys]: https://github.com/waywardmonkeys
64+
65+
[#54]: https://github.com/linebender/parley/pull/54
66+
[#55]: https://github.com/linebender/parley/pull/55
67+
[#56]: https://github.com/linebender/parley/pull/56
68+
[#59]: https://github.com/linebender/parley/pull/59
69+
[#78]: https://github.com/linebender/parley/pull/78
70+
[#71]: https://github.com/linebender/parley/pull/71
71+
[#72]: https://github.com/linebender/parley/pull/72
72+
73+
[Unreleased]: https://github.com/linebender/parley/compare/v0.1.0...HEAD
74+
[0.1.0]: https://github.com/linebender/parley/releases/tag/v0.1.0

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ members = [
99

1010
[workspace.package]
1111
edition = "2021"
12-
# Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml and with the relevant README.md files.
12+
# Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml, with the relevant README.md files
13+
# and with the MSRV in the `Unreleased` section of CHANGELOG.md.
1314
rust-version = "1.70"
1415
license = "Apache-2.0 OR MIT"
1516
repository = "https://github.com/linebender/parley"

0 commit comments

Comments
 (0)