diff --git a/Cargo.lock b/Cargo.lock index 3a2d0bb..ac6f093 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2637,7 +2637,7 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "uw8" -version = "0.1.2" +version = "0.2.0-rc1" dependencies = [ "ansi_term", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index d5a1e67..945635e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uw8" -version = "0.1.2" +version = "0.2.0-rc1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/site/content/_index.md b/site/content/_index.md index 416244b..010ab94 100644 --- a/site/content/_index.md +++ b/site/content/_index.md @@ -29,6 +29,19 @@ Examplers for older versions: ## Versions +### v0.2.0-rc1 + +* [Web runtime](v0.2.0-rc1) + +Changes: + +* [add sound support](docs#sound) +* "integer constant cast to float" literal syntax in CurlyWas (ex. `1_f` is equivalent to `1 as f32`) + +Known issues: + +* timing accuracy/update frequency of sound support currently depends on sound buffer size + ### v0.1.2 * [Web runtime](v0.1.2) diff --git a/site/static/v0.2.0-rc1/index.html b/site/static/v0.2.0-rc1/index.html new file mode 100644 index 0000000..c5a7c95 --- /dev/null +++ b/site/static/v0.2.0-rc1/index.html @@ -0,0 +1 @@ +MicroW8
MicroW8 0.2.0-rc1
\ No newline at end of file diff --git a/site/static/v0.2.0rc1/index.html b/site/static/v0.2.0rc1/index.html deleted file mode 100644 index 30a5d76..0000000 --- a/site/static/v0.2.0rc1/index.html +++ /dev/null @@ -1 +0,0 @@ -MicroW8
MicroW8 0.1.2
\ No newline at end of file diff --git a/src/run-web.html b/src/run-web.html index 10bfbb0..052f6fc 100644 --- a/src/run-web.html +++ b/src/run-web.html @@ -1 +1 @@ -uw8-run
\ No newline at end of file +uw8-run
\ No newline at end of file diff --git a/web/src/index.html b/web/src/index.html index 117e1b7..9d1a70f 100644 --- a/web/src/index.html +++ b/web/src/index.html @@ -10,7 +10,7 @@
- MicroW8 0.1.2 + MicroW8 0.2.0-rc1