Skip to content

Commit a82c87c

Browse files
committed
Publish version 0.10.1
1 parent 9112cae commit a82c87c

File tree

9 files changed

+23
-17
lines changed

9 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## 0.10.1 (2023-09-23)
6+
- Add PageUp and PageDown keys support ([#515](https://github.com/vinc/moros/pull/515))
7+
- Add namespaces to lisp ([#511](https://github.com/vinc/moros/pull/511))
48
- Add network syscalls ([#512](https://github.com/vinc/moros/pull/512))
5-
- Fix regex in shell redirection from ([#523](https://github.com/vinc/moros/pull/523))
69
- Evaluate load argument in lisp ([#522](https://github.com/vinc/moros/pull/522))
7-
- Fix cursor movements on long lines in editor ([#521](https://github.com/vinc/moros/pull/521))
10+
- Speed up VGA text mode ([#516](https://github.com/vinc/moros/pull/516))
11+
- Fix BitmapBlock#next_free_addr after 512 allocated blocks ([#518](https://github.com/vinc/moros/pull/518))
812
- Fix CSI bug in editor ([#520](https://github.com/vinc/moros/pull/520))
9-
- Bump num-traits from 0.2.15 to 0.2.16 ([#517](https://github.com/vinc/moros/pull/517))
13+
- Fix cursor movements on long lines in editor ([#521](https://github.com/vinc/moros/pull/521))
1014
- Fix read on fuse host driver ([#519](https://github.com/vinc/moros/pull/519))
11-
- Fix BitmapBlock#next_free_addr after 512 allocated blocks ([#518](https://github.com/vinc/moros/pull/518))
12-
- Speed up VGA text mode ([#516](https://github.com/vinc/moros/pull/516))
13-
- Add PageUp and PageDown keys support ([#515](https://github.com/vinc/moros/pull/515))
15+
- Fix regex in shell redirection from ([#523](https://github.com/vinc/moros/pull/523))
16+
- Update smoltcp from 0.9.1 to 0.10.0 ([#510](https://github.com/vinc/moros/pull/510))
17+
- Bump num-traits from 0.2.15 to 0.2.16 ([#517](https://github.com/vinc/moros/pull/517))
1418
- Bump pbkdf2 from 0.12.1 to 0.12.2 ([#513](https://github.com/vinc/moros/pull/513))
1519
- Bump uart_16550 from 0.2.18 to 0.2.19 ([#514](https://github.com/vinc/moros/pull/514))
16-
- Add namespaces to lisp ([#511](https://github.com/vinc/moros/pull/511))
17-
- Update smoltcp from 0.9.1 to 0.10.0 ([#510](https://github.com/vinc/moros/pull/510))
1820

1921
## 0.10.0 (2023-06-21)
2022
- Add cut/copy/paste to editor ([#456](https://github.com/vinc/moros/pull/456))

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
@@ -1,7 +1,7 @@
11
[package]
22
name = "moros"
33
description = "MOROS: Obscure Rust Operating System"
4-
version = "0.10.0"
4+
version = "0.10.1"
55
authors = ["Vincent Ollivier <v@vinc.cc>"]
66
edition = "2018"
77
license = "MIT"

doc/lisp.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,8 @@ language and reading from the filesystem.
198198
- Add params to function representations
199199
- Add docstring to functions
200200

201-
### Unreleased
201+
### 0.6.0 (2023-09-23)
202202
- Add file, number, string, and regex namespaces
203203
- Add socket functions
204+
205+
### Unreleased

doc/manual.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
During boot MOROS will display its version followed by the memory layout,
66
memory size, processor, devices, network cards, disks, and the real time clock.
77

8-
[0.250962] MOROS v0.10.0
8+
[0.250962] MOROS v0.10.1
99
[0.250962] MEM [0x00000000000000-0x00000000000FFF] FrameZero
1010
[0.250962] MEM [0x00000000001000-0x00000000004FFF] PageTable
1111
[0.250962] MEM [0x00000000005000-0x00000000015FFF] Bootloader
@@ -47,7 +47,7 @@ commands to test the system or `install` to setup the
4747

4848
/
4949
> install
50-
Welcome to MOROS v0.10.0 installation program!
50+
Welcome to MOROS v0.10.1 installation program!
5151

5252
Proceed? [y/N] y
5353

doc/moros.png

-59 Bytes
Loading

src/usr/lisp/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ fn repl(env: &mut Rc<RefCell<Env>>) -> Result<(), ExitCode> {
245245
let csi_reset = Style::reset();
246246
let prompt_string = format!("{}>{} ", csi_color, csi_reset);
247247

248-
println!("MOROS Lisp v0.5.0\n");
248+
println!("MOROS Lisp v0.6.0\n");
249249

250250
let mut prompt = Prompt::new();
251251
let history_file = "~/.lisp-history";

www/lisp.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,13 @@ <h3>0.5.0 (2023-06-21)</h3>
236236
<li>Add docstring to functions</li>
237237
</ul>
238238

239-
<h3>Unreleased</h3>
239+
<h3>0.6.0 (2023-09-23)</h3>
240240

241241
<ul>
242242
<li>Add file, number, string, and regex namespaces</li>
243243
<li>Add socket functions</li>
244244
</ul>
245+
246+
<h3>Unreleased</h3>
245247
</body>
246248
</html>

www/manual.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h2>Boot</h2>
1313
<p>During boot MOROS will display its version followed by the memory layout,
1414
memory size, processor, devices, network cards, disks, and the real time clock.</p>
1515

16-
<pre><code>[0.250962] MOROS v0.10.0
16+
<pre><code>[0.250962] MOROS v0.10.1
1717
[0.250962] MEM [0x00000000000000-0x00000000000FFF] FrameZero
1818
[0.250962] MEM [0x00000000001000-0x00000000004FFF] PageTable
1919
[0.250962] MEM [0x00000000005000-0x00000000015FFF] Bootloader
@@ -56,7 +56,7 @@ <h2>Installation</h2>
5656

5757
/
5858
&gt; install
59-
Welcome to MOROS v0.10.0 installation program!
59+
Welcome to MOROS v0.10.1 installation program!
6060

6161
Proceed? [y/N] y
6262

0 commit comments

Comments
 (0)