Skip to content

Commit

Permalink
add to the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcos-cat committed Dec 31, 2024
1 parent 09800a6 commit 575ad10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ This version is not yet released. If you are reading this on the website, then t
- **Breaking Change** - [`repeat ⍥`](https://uiua.org/docs/repeat) and [`do ⍢`](https://uiua.org/docs/do) with net-negative signatures now preserve lower stack values between iterations
- Signature comments can now use a `$` rather than a `?` to automatically label arguments and outputs
- Add sided subscripts for [`reach 𝄐`](https://uiua.org/docs/reach)
- Add experimental subscripts to [`negate ¯`](https://uiua.org/docs/negate)
- This will [`multiply ×`](https://uiua.org/docs/multiply) a number by the Nth root of unity

## 0.14.1 - 2024-12-23
### Interpreter
Expand Down
5 changes: 3 additions & 2 deletions site/src/other.rs
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,7 @@ pub fn Subscripts() -> impl IntoView {
subscript(Deshape, "Change rank", "♭₂ ⇡ 2_2"),
subscript(Transpose, "Repeat", "# Experimental!\n△ ⍉₃ °△1_2_3_4_5"),
subscript(Sqrt, "Nth root", "√₃ [8 27 125]"),
subscript(Neg, "Nth root of unity", "# Experimental!\n⁅₃ [⍥₄⊸¯₈] 1"),
subscript(Round, "To N decimal places", "⁅₃ π"),
subscript(Floor, "To N decimal places", "# Experimental!\n⌊₄ π\n⌊₄ τ"),
subscript(Ceil, "To N decimal places", "# Experimental!\n⌈₄ π\n⌈₄ τ"),
Expand All @@ -521,8 +522,8 @@ pub fn Subscripts() -> impl IntoView {
subscript(Rows, "Apply to subarrays N deep", "≡₂□ °△2_3_4"),
subscript(Inventory, "Apply to subarrays N deep", "⍚₂⇡ °△2_3"),
subscript(Repeat, "Repetition count", "⍥₅(⊂⟜/+) [1 2]"),
subscript(Tuples, "Tuple size", "# Experimental!\n⧅₂< ⇡4"),
subscript(Stencil, "Window size", "# Experimental!\n⧈₃∘ ⇡6"),
subscript(Tuples, "Tuple size", "⧅₂< ⇡4"),
subscript(Stencil, "Window size", "⧈₃∘ ⇡6"),
subscript(Stack, "Print top N values", "?₂ 1 2 3 4"),
];

Expand Down

0 comments on commit 575ad10

Please sign in to comment.