Skip to content

Commit

Permalink
prepare 0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikalii committed Nov 19, 2023
1 parent 2bebccf commit dbc7f80
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "uiua"
readme = "readme.md"
repository = "https://github.com/uiua-lang/uiua"
version = "0.2.0"
version = "0.3.0"

[dependencies]
# Core dependencies
Expand Down
7 changes: 4 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

Uiua is not yet stable.

## 0.3.0 - 2023-11-??
This version is not yet released.
If you are reading this on the website, then these changes are live here.
<!-- This version is not yet released.
If you are reading this on the website, then these changes are live here. -->

## 0.3.0 - 2023-11-19
### Language
- **Big Change**
- Deprecate all ocean functions
Expand Down
2 changes: 1 addition & 1 deletion src/algorithm/fork.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub fn switch(count: usize, sig: Signature, env: &mut Uiua) -> UiuaResult {
// Get selector
let selector = env
.pop("switch index")?
.as_natural_array(env, "Switch index must naturals")?;
.as_natural_array(env, "Switch index must be an array of naturals")?;
if let Some(i) = selector.data.iter().find(|&&i| i >= count) {
return Err(env.error(format!(
"Switch index {i} is out of bounds for switch of size {count}"
Expand Down
1 change: 0 additions & 1 deletion todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Within each section, items are ordered (roughly) by decreasing priority.

## Features
- Update fix glyph
- Join any scalar
- Negative windows
- Multimedia
Expand Down

0 comments on commit dbc7f80

Please sign in to comment.