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
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe

# Changelog

The latest published Kurbo release is [0.11.3](#0113-2025-07-21) which was released on 2025-07-21.
You can find its changes [documented below](#0113-2025-07-21).
The latest published Kurbo release is [0.12.0](#0120-2025-09-04) which was released on 2025-09-04.
You can find its changes [documented below](#0120-2025-09-04).

## [Unreleased]

This release has an [MSRV][] of 1.82.
It was increased to support floating point math in const functions.

## [0.12.0] (2025-09-04)

This release has an [MSRV][] of 1.82.

### Added

- Add `Ellipse::major_radius` and `Ellipse::minor_radius` methods. ([#497][] by [@tomcur][])
Expand Down Expand Up @@ -208,10 +212,11 @@ Note: A changelog was not kept for or before this release
[#496]: https://github.com/linebender/kurbo/pull/496
[#497]: https://github.com/linebender/kurbo/pull/497

[Unreleased]: https://github.com/linebender/kurbo/compare/v0.11.3...HEAD
[Unreleased]: https://github.com/linebender/kurbo/compare/v0.12.0...HEAD
[0.11.0]: https://github.com/linebender/kurbo/releases/tag/v0.11.0
[0.11.1]: https://github.com/linebender/kurbo/releases/tag/v0.11.1
[0.11.2]: https://github.com/linebender/kurbo/releases/tag/v0.11.2
[0.11.3]: https://github.com/linebender/kurbo/releases/tag/v0.11.3
[0.12.0]: https://github.com/linebender/kurbo/releases/tag/v0.12.0

[MSRV]: README.md#minimum-supported-rust-version-msrv
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = ["kurbo"]
#
# NOTE: When bumping this, remember to also bump the aforementioned other packages'
# version in the `workspace.dependencies` section in this file.
version = "0.11.3"
version = "0.12.0"

edition = "2021"
# Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml, with the relevant README.md files
Expand All @@ -17,7 +17,7 @@ license = "Apache-2.0 OR MIT"
repository = "https://github.com/linebender/kurbo"

[workspace.dependencies]
kurbo = { version = "0.11.3", path = "kurbo", default-features = false }
kurbo = { version = "0.12.0", path = "kurbo", default-features = false }

[workspace.lints]
rust.unsafe_code = "forbid"
Expand Down
Loading