From 12a375a7507ed390380181f58f40c4b8d3d966b5 Mon Sep 17 00:00:00 2001 From: Kai Schmidt Date: Sat, 7 Oct 2023 17:43:54 -0700 Subject: [PATCH] prepare 0.0.17 release --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- changelog.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9f76329b9..7ad82c673 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1679,9 +1679,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.148" +version = "0.2.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" +checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" [[package]] name = "libloading" @@ -1956,9 +1956,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", ] @@ -3231,7 +3231,7 @@ dependencies = [ [[package]] name = "uiua" -version = "0.0.16" +version = "0.0.17" dependencies = [ "ariadne", "bufreaderwriter", diff --git a/Cargo.toml b/Cargo.toml index 6b380351b..244204e09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "uiua" readme = "readme.md" repository = "https://github.com/uiua-lang/uiua" -version = "0.0.16" +version = "0.0.17" [dependencies] ariadne = "0.3.0" diff --git a/changelog.md b/changelog.md index 10db2ae73..4b1c702a0 100644 --- a/changelog.md +++ b/changelog.md @@ -2,7 +2,7 @@ Uiua is not yet stable. -## 0.0.17 - 2023-10-xx +## 0.0.17 - 2023-10-07 ### Language - Add GIF encoding with [`&gife`](https://uiua.org/docs/&gife) - Rename `constant` to [`box` `□`](https://uiua.org/docs/box). @@ -17,7 +17,7 @@ Uiua is not yet stable. - Add the [`sig`](https://uiua.org/docs/sig) function, which returns the stack signature of a value - A negative dimensions in the shape passed to [`reshape` `↯`](https://uiua.org/docs/reshape) can now be in *any* position, not just the first or last - Functions with ASCII glyphs now also format from their names -- Add a style diagnostic about the captialization of binding names +- Add a advice diagnostic about the captialization of binding names ### Interpreter - A few performance improvements, particularly to [`keep` `▽`](https://uiua.org/docs/keep), [`fork` `⊃`](https://uiua.org/docs/fork), and [`under` `⍜`](https://uiua.org/docs/under) ### Website