Skip to content

Commit 47f7c69

Browse files
committed
Release EndBASIC 0.11.1
1 parent 313878c commit 47f7c69

14 files changed

Lines changed: 39 additions & 39 deletions

File tree

.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.11.0
21+
- endbasic-0.11.1
2222

2323
jobs:
2424
publish:

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ for the time being.**
1212

1313
## Changes in version 0.11.1
1414

15-
**STILL UNDER DEVELOPMENT; NOT RELEASED YET.**
15+
**Released on 2024-09-14.**
1616

1717
* Issue #246: Fixed double keyboard input on the Windows console.
1818

README.md

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

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

27-
**The latest version of EndBASIC is 0.11.0 and was released on 2024-07-19.**
27+
**The latest version of EndBASIC is 0.11.1 and was released on 2024-09-14.**
2828

2929
## Quick start on the web
3030

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

4848
Visit the
49-
[release page](https://github.com/endbasic/endbasic/releases/tag/endbasic-0.11.0)
49+
[release page](https://github.com/endbasic/endbasic/releases/tag/endbasic-0.11.1)
5050
to download prebuilt binaries. Once downloaded, unpack the archive and run the
5151
`endbasic` binary to get started.
5252

cli/Cargo.toml

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

2727
[dependencies.endbasic-client]
28-
version = "0.11.0" # ENDBASIC-VERSION
28+
version = "0.11.1" # ENDBASIC-VERSION
2929
path = "../client"
3030

3131
[dependencies.endbasic-core]
32-
version = "0.11.0" # ENDBASIC-VERSION
32+
version = "0.11.1" # ENDBASIC-VERSION
3333
path = "../core"
3434

3535
[dependencies.endbasic-repl]
36-
version = "0.11.0" # ENDBASIC-VERSION
36+
version = "0.11.1" # ENDBASIC-VERSION
3737
path = "../repl"
3838

3939
[dependencies.endbasic-rpi]
40-
version = "0.11.0" # ENDBASIC-VERSION
40+
version = "0.11.1" # ENDBASIC-VERSION
4141
path = "../rpi"
4242
optional = true
4343

4444
[dependencies.endbasic-sdl]
45-
version = "0.11.0" # ENDBASIC-VERSION
45+
version = "0.11.1" # ENDBASIC-VERSION
4646
path = "../sdl"
4747
optional = true
4848

4949
[dependencies.endbasic-std]
50-
version = "0.11.0" # ENDBASIC-VERSION
50+
version = "0.11.1" # ENDBASIC-VERSION
5151
path = "../std"
5252

5353
[dependencies.endbasic-terminal]
54-
version = "0.11.0" # ENDBASIC-VERSION
54+
version = "0.11.1" # ENDBASIC-VERSION
5555
path = "../terminal"
5656
optional = true
5757

client/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-client"
3-
version = "0.11.0" # ENDBASIC-VERSION
3+
version = "0.11.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -21,11 +21,11 @@ time = { version = "0.3", features = ["std"] }
2121
url = "2.2"
2222

2323
[dependencies.endbasic-core]
24-
version = "0.11.0" # ENDBASIC-VERSION
24+
version = "0.11.1" # ENDBASIC-VERSION
2525
path = "../core"
2626

2727
[dependencies.endbasic-std]
28-
version = "0.11.0" # ENDBASIC-VERSION
28+
version = "0.11.1" # ENDBASIC-VERSION
2929
path = "../std"
3030

3131
[dependencies.reqwest]

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.11.0" # ENDBASIC-VERSION
3+
version = "0.11.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.11.0" # ENDBASIC-VERSION
3+
version = "0.11.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.3", features = ["std"] }
1717

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

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

2626
[dev-dependencies]

rpi/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "endbasic-rpi"
3-
version = "0.11.0" # ENDBASIC-VERSION
3+
version = "0.11.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -18,15 +18,15 @@ rppal = "0.17"
1818
tokio = { version = "1", features = ["full"] }
1919

2020
[dependencies.endbasic-core]
21-
version = "0.11.0" # ENDBASIC-VERSION
21+
version = "0.11.1" # ENDBASIC-VERSION
2222
path = "../core"
2323

2424
[dependencies.endbasic-std]
25-
version = "0.11.0" # ENDBASIC-VERSION
25+
version = "0.11.1" # ENDBASIC-VERSION
2626
path = "../std"
2727

2828
[dependencies.endbasic-terminal]
29-
version = "0.11.0" # ENDBASIC-VERSION
29+
version = "0.11.1" # ENDBASIC-VERSION
3030
path = "../terminal"
3131

3232
[dev-dependencies]

sdl/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-sdl"
3-
version = "0.11.0" # ENDBASIC-VERSION
3+
version = "0.11.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -18,11 +18,11 @@ once_cell = "1.8"
1818
tempfile = "3"
1919

2020
[dependencies.endbasic-core]
21-
version = "0.11.0" # ENDBASIC-VERSION
21+
version = "0.11.1" # ENDBASIC-VERSION
2222
path = "../core"
2323

2424
[dependencies.endbasic-std]
25-
version = "0.11.0" # ENDBASIC-VERSION
25+
version = "0.11.1" # ENDBASIC-VERSION
2626
path = "../std"
2727

2828
[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.11.0" # ENDBASIC-VERSION
3+
version = "0.11.1" # ENDBASIC-VERSION
44
license = "Apache-2.0"
55
authors = ["Julio Merino <jmmv@endbasic.dev>"]
66
categories = ["development-tools", "parser-implementations"]
@@ -19,7 +19,7 @@ radix_trie = "0.2"
1919
time = { version = "0.3", features = ["formatting", "local-offset", "std"] }
2020

2121
[dependencies.endbasic-core]
22-
version = "0.11.0" # ENDBASIC-VERSION
22+
version = "0.11.1" # ENDBASIC-VERSION
2323
path = "../core"
2424

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

0 commit comments

Comments
 (0)