Skip to content
Open
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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@
- `supset.tilde`: ⫈
- `supset.times`: ⫂
- `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`: ⋪

- Miscellaneous technical
- `bowtie.stroked`: ⋈
Expand All @@ -59,8 +67,10 @@
- treasure: 🪎
- trombone: 🪊

### Deprecations
### Deprecations in `sym`

- `gt.tri` and variants in favor of `gt.closed`
- `lt.tri` and variants in favor of `lt.closed`
- `join` and its variants in favor of `bowtie.big` with the same variants

### Removals **(Breaking change)**
Expand Down
16 changes: 16 additions & 0 deletions src/modules/sym.txt
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,10 @@ gt >
.approx ⪆
.arc ⪧
.arc.eq ⪩
.closed ⊳
.closed.eq ⊵
.closed.eq.not ⋭
.closed.not ⋫
.double ≫
.double.nested ⪢
.eq ≥
Expand All @@ -324,9 +328,13 @@ gt >
.ntilde ⋧
.tilde ≳
.tilde.not ≵
@deprecated: `gt.tri` is deprecated, use `gt.closed` instead
.tri ⊳
@deprecated: `gt.tri.eq` is deprecated, use `gt.closed.eq` instead
.tri.eq ⊵
@deprecated: `gt.tri.eq.not` is deprecated, use `gt.closed.eq.not` instead
.tri.eq.not ⋭
@deprecated: `gt.tri.not` is deprecated, use `gt.closed.not` instead
.tri.not ⋫
.triple ⋙
.triple.nested ⫸
Expand All @@ -336,6 +344,10 @@ lt <
.approx ⪅
.arc ⪦
.arc.eq ⪨
.closed ⊲
.closed.eq ⊴
.closed.eq.not ⋬
.closed.not ⋪
.double ≪
.double.nested ⪡
.eq ≤
Expand All @@ -352,9 +364,13 @@ lt <
.ntilde ⋦
.tilde ≲
.tilde.not ≴
@deprecated: `lt.tri` is deprecated, use `lt.closed` instead
.tri ⊲
@deprecated: `lt.tri.eq` is deprecated, use `lt.closed.eq` instead
.tri.eq ⊴
@deprecated: `lt.tri.eq.not` is deprecated, use `lt.closed.eq.not` instead
.tri.eq.not ⋬
@deprecated: `lt.tri.not` is deprecated, use `lt.closed.not` instead
.tri.not ⋪
.triple ⋘
.triple.nested ⫷
Expand Down