Skip to content
Open
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
63 changes: 33 additions & 30 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
# Changelog

## Unreleased
## Version 0.3.0

### General changes

- Trivially updated to Unicode 17.0.0
- Added numeral systems API under the `numeral-systems` feature flag
- Compared to Typst 0.14.2, added Tibetan numerals to `numeral-systems`.
- Compared to Typst 0.14.2, added Tibetan numerals.

### New in `sym`

- Punctuation
- `underscore`: _

- Mathematical symbols
- `pee`: ℘
- `mapsfrom`: ↤
- `mapsfrom.long` ⟻
- `emptyset.zero`: ∅︀
- `nothing.zero`: ∅︀
- `union.serif`: ∪︀
Expand All @@ -22,46 +25,41 @@
- `inter.sq.serif`: ⊓︀
- `gt.double.nested`: ⪢
- `lt.double.nested`: ⪡
- `gt.closed`: ⊳
- `gt.closed.not`: ⋫
- `gt.closed.eq`: ⊵
- `gt.closed.eq.not`: ⋭
- `lt.closed`: ⊲
- `lt.closed.not`: ⋪
- `lt.closed.eq`: ⊴
- `lt.closed.eq.not`: ⋬
- `supset.closed`: ⫐
- `supset.closed.eq`: ⫒
- `subset.closed`: ⫏
- `subset.closed.eq`: ⫑
- `gt.arc` ⪧
- `gt.arc.eq` ⪩
- `lt.arc`: ⪦
- `lt.arc.eq`: ⪨
- `mapsfrom`: ↤
- `mapsfrom.long` ⟻
- `subset.approx`: ⫉
- `subset.closed`: ⫏
- `subset.closed.eq`: ⫑
- `subset.eq.dot`: ⫃
- `supset.equiv`: ⫆
- `subset.equiv`: ⫅
- `supset.nequiv`: ⫌
- `subset.nequiv`: ⫋
- `subset.plus`: ⪿
- `supset.tilde`:
- `subset.tilde`: ⫇
- `subset.times`: ⫁
- `supset.approx`: ⫊
- `supset.closed`: ⫐
- `supset.closed.eq`: ⫒
- `subset.approx`: ⫉
- `supset.eq.dot`: ⫄
- `supset.equiv`: ⫆
- `supset.nequiv`: ⫌
- `subset.eq.dot`: ⫃
- `supset.plus`: ⫀
- `supset.tilde`:
- `subset.plus`: ⪿
- `supset.times`: ⫂
Comment on lines +44 to 56
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think these should be grouped by supset/subset first. All other changelog entries also do it that way.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is inconsistent: we first list all new .closed variants, then all new .equiv variant, then all new .nequiv variants... And every time, we list supset before subset.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But compare this to the arrow variants from 0.2.0: There, all arrow.r variants come before all arrow.l variants and so on. (Actually, with the exception of arrow.l.open, that seems to have been an oversight)
Similarly, the plus.o variants are all grouped together, and the times.o ones as well; We don't have plus.o, times.o, plus.o.big, times.o.big, plus.o.l, times.o.l, ...
In the same vein, I would have expected the supset and subset variants to be each grouped together, with the apparent exception that the closed symbols are listed separately because they form a more cohesive group like that (tho personally I would actually prefer them to just be grouped according to the base symbol, but I can accept this exception).

- `pee`: ℘
- `gt.closed`: ⊳
- `gt.closed.eq`: ⊵
- `gt.closed.eq.not`: ⋭
- `gt.closed.not`: ⋫
- `lt.closed`: ⊲
- `lt.closed.eq`: ⊴
- `lt.closed.eq.not`: ⋬
- `lt.closed.not`: ⋪
- `eq.dot`: ≐

- Decorated mathematical symbols
- `subset.times`: ⫁
- `plus.hat`: ⨣
- `approx.hat`: ⩯
- `lt.quest`: ⩻
- `gt.quest`: ⩼
- `lt.quest`: ⩻
- `eq.dot`: ≐
- `eq.ast`: ⩮

- Miscellaneous technical
Expand All @@ -75,7 +73,12 @@
- `bowtie.filled`: ⧓
- `bowtie.filled.l`: ⧑
- `bowtie.filled.r`: ⧒
- `tack.rr`: ⊨
- `tack.rr.not`: ⊭
- `tack.rrr`: ⫢
- `tack.ll`: ⫤
- `tack.tt`: ⫫
- `tack.bb`: ⫪

- Arrows
- `arrow.tr.bar`: 🢹
Expand All @@ -90,7 +93,7 @@
- Keyboard labels
- `spacebar`: ␣

- Control (Printable symbols representing non-printable characters)
- Printable symbols representing control characters, under a `control` submodule
- `nul`: ␀
- `soh`: ␁
- `stx`: ␂
Expand Down Expand Up @@ -145,7 +148,7 @@
- `join` and its variants in favor of `bowtie.big` with the same variants
- `tack.r.double`, `tack.r.double.not`, `tack.l.double`, `tack.t.double`, and `tack.b.double` in favor of `tack.rr`, `tack.rr.not`, `tack.ll`, `tack.tt`, and `tack.bb` respectively.

### Removals **(Breaking change)**
### Removals in `sym` **(Breaking change)**

These previously deprecated items were removed:
- `paren.double.*`
Expand Down
Loading