Skip to content

Commit a3017aa

Browse files
committed
Release EndBASIC 0.8.1
Minor release to ship a couple of important usability fixes and to migrate away from Google Analytics.
1 parent a3cb94f commit a3017aa

File tree

13 files changed

+31
-31
lines changed

13 files changed

+31
-31
lines changed

.github/workflows/deploy-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ name: Deploy to repl.endbasic.dev
1818
on:
1919
push:
2020
tags:
21-
- endbasic-0.8.0
21+
- endbasic-0.8.1
2222

2323
jobs:
2424
publish:

NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ to talk to the cloud service. If you use the web interface, this should not be
1010
a problem, but if you use local builds, please try to stay on the latest release
1111
for the time being.**
1212

13-
## Changes in version X.Y.Z
13+
## Changes in version 0.8.1
1414

15-
**STILL UNDER DEVELOPMENT; NOT RELEASED YET.**
15+
**Released on 2022-01-29.**
1616

1717
* Issue #136: Fixed handling of key presses on the web interface so that they
1818
don't interfere with browser shortcuts. This prevents Tab from stealing

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ operating systems and platforms, including macOS, Windows, and Linux.
2323

2424
EndBASIC is free software under the [Apache 2.0 License](LICENSE).
2525

26-
**The latest version of EndBASIC is 0.8.0 and was released on 2021-11-11.**
26+
**The latest version of EndBASIC is 0.8.1 and was released on 2022-01-29.**
2727

2828
## Quick start on the web
2929

@@ -45,7 +45,7 @@ for the cloud service and upload your programs to share them with the world.
4545
## Quick start on your machine
4646

4747
Visit the
48-
[release page](https://github.com/endbasic/endbasic/releases/tag/endbasic-0.8.0)
48+
[release page](https://github.com/endbasic/endbasic/releases/tag/endbasic-0.8.1)
4949
to download prebuilt binaries. Once downloaded, unpack the archive and run the
5050
`endbasic` binary to get started.
5151

cli/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "endbasic"
3-
version = "0.8.99" # ENDBASIC-VERSION
3+
version = "0.8.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -24,29 +24,29 @@ getopts = "0.2"
2424
thiserror = "1.0"
2525

2626
[dependencies.endbasic-core]
27-
version = "0.8.99" # ENDBASIC-VERSION
27+
version = "0.8.1" # ENDBASIC-VERSION
2828
path = "../core"
2929

3030
[dependencies.endbasic-repl]
31-
version = "0.8.99" # ENDBASIC-VERSION
31+
version = "0.8.1" # ENDBASIC-VERSION
3232
path = "../repl"
3333

3434
[dependencies.endbasic-rpi]
35-
version = "0.8.99" # ENDBASIC-VERSION
35+
version = "0.8.1" # ENDBASIC-VERSION
3636
path = "../rpi"
3737
optional = true
3838

3939
[dependencies.endbasic-sdl]
40-
version = "0.8.99" # ENDBASIC-VERSION
40+
version = "0.8.1" # ENDBASIC-VERSION
4141
path = "../sdl"
4242
optional = true
4343

4444
[dependencies.endbasic-std]
45-
version = "0.8.99" # ENDBASIC-VERSION
45+
version = "0.8.1" # ENDBASIC-VERSION
4646
path = "../std"
4747

4848
[dependencies.endbasic-terminal]
49-
version = "0.8.99" # ENDBASIC-VERSION
49+
version = "0.8.1" # ENDBASIC-VERSION
5050
path = "../terminal"
5151
optional = true
5252

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "endbasic-core"
3-
version = "0.8.99" # ENDBASIC-VERSION
3+
version = "0.8.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]

repl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "endbasic-repl"
3-
version = "0.8.99" # ENDBASIC-VERSION
3+
version = "0.8.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -16,11 +16,11 @@ async-trait = "0.1"
1616
time = { version = "0.2", features = ["std"] }
1717

1818
[dependencies.endbasic-core]
19-
version = "0.8.99" # ENDBASIC-VERSION
19+
version = "0.8.1" # ENDBASIC-VERSION
2020
path = "../core"
2121

2222
[dependencies.endbasic-std]
23-
version = "0.8.99" # ENDBASIC-VERSION
23+
version = "0.8.1" # ENDBASIC-VERSION
2424
path = "../std"
2525

2626
[dev-dependencies]

rpi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "endbasic-rpi"
3-
version = "0.8.99" # ENDBASIC-VERSION
3+
version = "0.8.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -15,5 +15,5 @@ edition = "2018"
1515
rppal = "0.11.3"
1616

1717
[dependencies.endbasic-std]
18-
version = "0.8.99" # ENDBASIC-VERSION
18+
version = "0.8.1" # ENDBASIC-VERSION
1919
path = "../std"

sdl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "endbasic-sdl"
3-
version = "0.8.99" # ENDBASIC-VERSION
3+
version = "0.8.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -17,7 +17,7 @@ once_cell = "1.8"
1717
tempfile = "3"
1818

1919
[dependencies.endbasic-std]
20-
version = "0.8.99" # ENDBASIC-VERSION
20+
version = "0.8.1" # ENDBASIC-VERSION
2121
path = "../std"
2222

2323
[dependencies.sdl2]

std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "endbasic-std"
3-
version = "0.8.99" # ENDBASIC-VERSION
3+
version = "0.8.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -22,7 +22,7 @@ serde_json = "1.0"
2222
time = { version = "0.2", features = ["std"] }
2323

2424
[dependencies.endbasic-core]
25-
version = "0.8.99" # ENDBASIC-VERSION
25+
version = "0.8.1" # ENDBASIC-VERSION
2626
path = "../core"
2727

2828
# We don't directly use getrandom but rand does, and we have to customize how

terminal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "endbasic-terminal"
3-
version = "0.8.99" # ENDBASIC-VERSION
3+
version = "0.8.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -16,5 +16,5 @@ async-trait = "0.1"
1616
crossterm = "0.18"
1717

1818
[dependencies.endbasic-std]
19-
version = "0.8.99" # ENDBASIC-VERSION
19+
version = "0.8.1" # ENDBASIC-VERSION
2020
path = "../std"

0 commit comments

Comments
 (0)