Publish version 0.10.1

This commit is contained in:
Vincent Ollivier 2023-09-23 09:09:31 +02:00
parent 9112caebe6
commit a82c87c61c
9 changed files with 26 additions and 20 deletions

View File

@ -1,20 +1,22 @@
# Changelog
## Unreleased
- Add network syscalls ([#512](https://github.com/vinc/moros/pull/512))
- Fix regex in shell redirection from ([#523](https://github.com/vinc/moros/pull/523))
- Evaluate load argument in lisp ([#522](https://github.com/vinc/moros/pull/522))
- Fix cursor movements on long lines in editor ([#521](https://github.com/vinc/moros/pull/521))
- Fix CSI bug in editor ([#520](https://github.com/vinc/moros/pull/520))
- Bump num-traits from 0.2.15 to 0.2.16 ([#517](https://github.com/vinc/moros/pull/517))
- Fix read on fuse host driver ([#519](https://github.com/vinc/moros/pull/519))
- Fix BitmapBlock#next_free_addr after 512 allocated blocks ([#518](https://github.com/vinc/moros/pull/518))
- Speed up VGA text mode ([#516](https://github.com/vinc/moros/pull/516))
## 0.10.1 (2023-09-23)
- Add PageUp and PageDown keys support ([#515](https://github.com/vinc/moros/pull/515))
- Add namespaces to lisp ([#511](https://github.com/vinc/moros/pull/511))
- Add network syscalls ([#512](https://github.com/vinc/moros/pull/512))
- Evaluate load argument in lisp ([#522](https://github.com/vinc/moros/pull/522))
- Speed up VGA text mode ([#516](https://github.com/vinc/moros/pull/516))
- Fix BitmapBlock#next_free_addr after 512 allocated blocks ([#518](https://github.com/vinc/moros/pull/518))
- Fix CSI bug in editor ([#520](https://github.com/vinc/moros/pull/520))
- Fix cursor movements on long lines in editor ([#521](https://github.com/vinc/moros/pull/521))
- Fix read on fuse host driver ([#519](https://github.com/vinc/moros/pull/519))
- Fix regex in shell redirection from ([#523](https://github.com/vinc/moros/pull/523))
- Update smoltcp from 0.9.1 to 0.10.0 ([#510](https://github.com/vinc/moros/pull/510))
- Bump num-traits from 0.2.15 to 0.2.16 ([#517](https://github.com/vinc/moros/pull/517))
- Bump pbkdf2 from 0.12.1 to 0.12.2 ([#513](https://github.com/vinc/moros/pull/513))
- Bump uart_16550 from 0.2.18 to 0.2.19 ([#514](https://github.com/vinc/moros/pull/514))
- Add namespaces to lisp ([#511](https://github.com/vinc/moros/pull/511))
- Update smoltcp from 0.9.1 to 0.10.0 ([#510](https://github.com/vinc/moros/pull/510))
## 0.10.0 (2023-06-21)
- Add cut/copy/paste to editor ([#456](https://github.com/vinc/moros/pull/456))

2
Cargo.lock generated
View File

@ -312,7 +312,7 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "moros"
version = "0.10.0"
version = "0.10.1"
dependencies = [
"acpi",
"aml",

View File

@ -1,7 +1,7 @@
[package]
name = "moros"
description = "MOROS: Obscure Rust Operating System"
version = "0.10.0"
version = "0.10.1"
authors = ["Vincent Ollivier <v@vinc.cc>"]
edition = "2018"
license = "MIT"

View File

@ -198,6 +198,8 @@ language and reading from the filesystem.
- Add params to function representations
- Add docstring to functions
### Unreleased
### 0.6.0 (2023-09-23)
- Add file, number, string, and regex namespaces
- Add socket functions
### Unreleased

View File

@ -5,7 +5,7 @@
During boot MOROS will display its version followed by the memory layout,
memory size, processor, devices, network cards, disks, and the real time clock.
[0.250962] MOROS v0.10.0
[0.250962] MOROS v0.10.1
[0.250962] MEM [0x00000000000000-0x00000000000FFF] FrameZero
[0.250962] MEM [0x00000000001000-0x00000000004FFF] PageTable
[0.250962] MEM [0x00000000005000-0x00000000015FFF] Bootloader
@ -47,7 +47,7 @@ commands to test the system or `install` to setup the
/
> install
Welcome to MOROS v0.10.0 installation program!
Welcome to MOROS v0.10.1 installation program!
Proceed? [y/N] y

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -245,7 +245,7 @@ fn repl(env: &mut Rc<RefCell<Env>>) -> Result<(), ExitCode> {
let csi_reset = Style::reset();
let prompt_string = format!("{}>{} ", csi_color, csi_reset);
println!("MOROS Lisp v0.5.0\n");
println!("MOROS Lisp v0.6.0\n");
let mut prompt = Prompt::new();
let history_file = "~/.lisp-history";

View File

@ -236,11 +236,13 @@ language and reading from the filesystem.</p>
<li>Add docstring to functions</li>
</ul>
<h3>Unreleased</h3>
<h3>0.6.0 (2023-09-23)</h3>
<ul>
<li>Add file, number, string, and regex namespaces</li>
<li>Add socket functions</li>
</ul>
<h3>Unreleased</h3>
</body>
</html>

View File

@ -13,7 +13,7 @@
<p>During boot MOROS will display its version followed by the memory layout,
memory size, processor, devices, network cards, disks, and the real time clock.</p>
<pre><code>[0.250962] MOROS v0.10.0
<pre><code>[0.250962] MOROS v0.10.1
[0.250962] MEM [0x00000000000000-0x00000000000FFF] FrameZero
[0.250962] MEM [0x00000000001000-0x00000000004FFF] PageTable
[0.250962] MEM [0x00000000005000-0x00000000015FFF] Bootloader
@ -56,7 +56,7 @@ Running console in diskless mode
/
&gt; install
Welcome to MOROS v0.10.0 installation program!
Welcome to MOROS v0.10.1 installation program!
Proceed? [y/N] y