Skip to content

Commit 7d50d17

Browse files
committed
0.9.0
1 parent edd9eb8 commit 7d50d17

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,36 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.9.0] - 2023-07-06
9+
10+
### Added
11+
12+
- Add `Shaping` enum to allow selecting the shaping strategy
13+
- Add `Buffer::new_empty` to create `Buffer` without `FontSystem`
14+
- Add `BidiParagraphs` iterator
15+
- Allow setting `Cursor` color
16+
- Allow setting `Editor` cursor
17+
- Add `PhysicalGlyph` that allows computing `CacheKey` after layout
18+
- Add light syntax highlighter to `libcosmic` example
19+
20+
### Fixed
21+
22+
- Fix WebAssembly support
23+
- Fix alignment when not wrapping
24+
- Fallback to monospaced font if Monospace family is not found
25+
- Align glyphs in a `LayoutRun` to baseline
26+
27+
### Changed
28+
29+
- Update `fontdb` to 0.14.1
30+
- Replace ouroboros with aliasable
31+
- Use `BidiParagraphs` iterator instead of `str::Lines`
32+
- Update `libcosmic` version
33+
34+
### Removed
35+
36+
- `LayoutGlyph` no longer has `x_int` and `y_int`, use `PhysicalGlyph` instead
37+
838
## [0.8.0] - 2023-04-03
939

1040
### Added

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cosmic-text"
33
description = "Pure Rust multi-line text handling"
4-
version = "0.8.0"
4+
version = "0.9.0"
55
authors = ["Jeremy Soller <[email protected]>"]
66
edition = "2021"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)