Skip to content

Commit dbc7f80

Browse files
committed
prepare 0.3.0 release
1 parent 2bebccf commit dbc7f80

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "uiua"
99
readme = "readme.md"
1010
repository = "https://github.com/uiua-lang/uiua"
11-
version = "0.2.0"
11+
version = "0.3.0"
1212

1313
[dependencies]
1414
# Core dependencies

changelog.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
Uiua is not yet stable.
44

5-
## 0.3.0 - 2023-11-??
6-
This version is not yet released.
7-
If you are reading this on the website, then these changes are live here.
5+
<!-- This version is not yet released.
6+
If you are reading this on the website, then these changes are live here. -->
7+
8+
## 0.3.0 - 2023-11-19
89
### Language
910
- **Big Change**
1011
- Deprecate all ocean functions

src/algorithm/fork.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub fn switch(count: usize, sig: Signature, env: &mut Uiua) -> UiuaResult {
8383
// Get selector
8484
let selector = env
8585
.pop("switch index")?
86-
.as_natural_array(env, "Switch index must naturals")?;
86+
.as_natural_array(env, "Switch index must be an array of naturals")?;
8787
if let Some(i) = selector.data.iter().find(|&&i| i >= count) {
8888
return Err(env.error(format!(
8989
"Switch index {i} is out of bounds for switch of size {count}"

todo.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Within each section, items are ordered (roughly) by decreasing priority.
33

44
## Features
5-
- Update fix glyph
65
- Join any scalar
76
- Negative windows
87
- Multimedia

0 commit comments

Comments
 (0)