Skip to content

Commit

Permalink
Publish version 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vinc committed Sep 23, 2023
1 parent 9112cae commit a82c87c
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 17 deletions.
18 changes: 10 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# Changelog

## Unreleased

## 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))
- 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))
- 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))
- Bump num-traits from 0.2.15 to 0.2.16 ([#517](https://github.com/vinc/moros/pull/517))
- 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 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))
- Add PageUp and PageDown keys support ([#515](https://github.com/vinc/moros/pull/515))
- 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))
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "moros"
description = "MOROS: Obscure Rust Operating System"
version = "0.10.0"
version = "0.10.1"
authors = ["Vincent Ollivier <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
4 changes: 3 additions & 1 deletion doc/lisp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions doc/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
Binary file modified doc/moros.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/usr/lisp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 3 additions & 1 deletion www/lisp.html
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,13 @@ <h3>0.5.0 (2023-06-21)</h3>
<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>
4 changes: 2 additions & 2 deletions www/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h2>Boot</h2>
<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
Expand Down Expand Up @@ -56,7 +56,7 @@ <h2>Installation</h2>

/
&gt; install
Welcome to MOROS v0.10.0 installation program!
Welcome to MOROS v0.10.1 installation program!

Proceed? [y/N] y

Expand Down

0 comments on commit a82c87c

Please sign in to comment.