-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update changelog (content+format). Update MSRV text.
This brings in some of the updates to the format that we're using in other projects as well as mentioning the MSRV.
- Loading branch information
1 parent
f512d6e
commit 4f9ce7c
Showing
3 changed files
with
54 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,53 @@ | ||
# Changelog | ||
|
||
<!-- Instructions | ||
This changelog follows the patterns described here: <https://keepachangelog.com/en/1.0.0/>. | ||
This changelog follows the patterns described here: <https://keepachangelog.com/en/>. | ||
Subheadings to categorize changes are `added, changed, deprecated, removed, fixed, security`. | ||
--> | ||
|
||
# Changelog | ||
|
||
The latest published Kurbo release is [0.11.0](#0110) which was released on 2024-02-14. | ||
You can find its changes [documented below](#0110). | ||
|
||
## Unreleased | ||
|
||
This release has an [MSRV][] of 1.65. | ||
|
||
### Added | ||
|
||
- [#339](https://github.com/linebender/kurbo/pull/339) - Add `From (f32, f32)` for `Point` by [@rsheeter](https://github.com/rsheeter) | ||
- Add `From (f32, f32)` for `Point`. ([#339] by [@rsheeter]) | ||
|
||
### Changed | ||
|
||
- [#340](https://github.com/linebender/kurbo/pull/340) - Move `Self: Sized` bound from `Shape` to methods by [@waywardmonkeys](https://github.com/waywardmonkeys) | ||
- Move `Self: Sized` bound from `Shape` to methods. ([#340] by [@waywardmonkeys]) | ||
|
||
### Fixed | ||
|
||
- [#343](https://github.com/linebender/kurbo/pull/343) - Allow lines in simplify input by [@raphlinus](https://github.com/raphlinus) | ||
- An edge case in `mindist` was fixed. ([#334] by [@platlas]) | ||
- Allow lines in simplify input. ([#343] by [@raphlinus]) | ||
- Documentation for `Arc.perimeter` was corrected. ([#354] by [@simoncozens]) | ||
|
||
## 0.11.0 (2024-02-14) | ||
## [0.11.0][] (2024-02-14) | ||
|
||
This release has an [MSRV][] of 1.65. | ||
|
||
- ... | ||
|
||
[@platlas]: https://github.com/platlas | ||
[@raphlinus]: https://github.com/raphlinus | ||
[@rsheeter]: https://github.com/rsheeter | ||
[@simoncozens]: https://github.com/simoncozens | ||
[@waywardmonkeys]: https://github.com/waywardmonkeys | ||
|
||
[#334]: https://github.com/linebender/kurbo/pull/334 | ||
[#339]: https://github.com/linebender/kurbo/pull/339 | ||
[#340]: https://github.com/linebender/kurbo/pull/340 | ||
[#343]: https://github.com/linebender/kurbo/pull/343 | ||
[#354]: https://github.com/linebender/kurbo/pull/354 | ||
|
||
[Unreleased]: https://github.com/linebender/kurbo/compare/v0.11.0...HEAD | ||
[0.11.0]: https://github.com/linebender/kurbo/releases/tag/v0.11.0 | ||
|
||
[MSRV]: README.md#minimum-supported-rust-version-msrv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,9 @@ authors = ["Raph Levien <[email protected]>"] | |
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
# TODO: When this hits 1.74, move lint configuration into this file via a lints table. | ||
rust-version = "1.65" # When updating this, also update the README.md and CI. | ||
# Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml, with the README.md file, | ||
# and with the MSRV in the `Unreleased` section of CHANGELOG.md. | ||
rust-version = "1.65" | ||
keywords = ["graphics", "curve", "curves", "bezier", "geometry"] | ||
repository = "https://github.com/linebender/kurbo" | ||
description = "A 2D curves library" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters