Publish version 0.8.0

This commit is contained in:
Vincent Ollivier 2022-08-05 11:55:20 +02:00
parent 73f7ccb240
commit dbe75aa9d8
9 changed files with 46 additions and 34 deletions

View File

@ -2,37 +2,49 @@
## Unreleased
- Remove superfluous use of lazy_static (#364)
- Use exit code to set status var (#360)
- Add shell aliases (#357)
- Bump object from 0.28.4 to 0.29.0 (#358)
- Fix args ptr alignment (#359)
- Improve regex for redirections (#356)
- Store current direction in DIR shell variable (#355)
- Add userspace entry_point macro (#354)
- Add shell globbing (#352)
- Read command line args from userspace programs (#351)
- Add binaries (#350)
- Executable loading (#349)
- Add shell variables (#348)
- Improve Lisp (#344)
- Add lazy allocation (#275)
- Replace clock syscalls with device files (#345)
- Add time command (#346)
- Bump smoltcp from 0.8.0 to 0.8.1 (#342)
- Add socket command (#341)
- Bump object from 0.28.3 to 0.28.4 (#339)
- Replace ChaCha RNG by HC-128 (#338)
- Build only moros image (#340)
- Refactor serial (#336)
- Improve dhcp command (#335)
- Rewrite network interface (#334)
- Add CSI sequence for enabling or disabling echo to userspace (#333)
- Refactor code (#330)
- Improve FUSE driver with write and delete (#292)
- Fix device reading (#329)
- Add a reboot command (#328)
- Fix issues with process alloc (#327)
## 0.8.0 (2022-08-05)
- Add Brautigan poem ([#373](https://github.com/vinc/moros/pull/373))
- Add CSI sequence for enabling or disabling echo to userspace ([#333](https://github.com/vinc/moros/pull/333))
- Add a reboot command ([#328](https://github.com/vinc/moros/pull/328))
- Add binaries ([#350](https://github.com/vinc/moros/pull/350))
- Add lazy allocation ([#275](https://github.com/vinc/moros/pull/275))
- Add shell aliases ([#357](https://github.com/vinc/moros/pull/357))
- Add shell globbing ([#352](https://github.com/vinc/moros/pull/352))
- Add shell variables ([#348](https://github.com/vinc/moros/pull/348))
- Add socket command ([#341](https://github.com/vinc/moros/pull/341))
- Add tilde expansion to shell ([#367](https://github.com/vinc/moros/pull/367))
- Add time command ([#346](https://github.com/vinc/moros/pull/346))
- Add userspace entry point macro ([#354](https://github.com/vinc/moros/pull/354))
- Build only moros image ([#340](https://github.com/vinc/moros/pull/340))
- Executable loading ([#349](https://github.com/vinc/moros/pull/349))
- Fix args ptr alignment ([#359](https://github.com/vinc/moros/pull/359))
- Fix device reading ([#329](https://github.com/vinc/moros/pull/329))
- Fix issues with process alloc ([#327](https://github.com/vinc/moros/pull/327))
- Fix variables expansion ([#370](https://github.com/vinc/moros/pull/370))
- Improve FUSE driver with write and delete ([#292](https://github.com/vinc/moros/pull/292))
- Improve Lisp ([#344](https://github.com/vinc/moros/pull/344))
- Improve dhcp command ([#335](https://github.com/vinc/moros/pull/335))
- Improve http command ([#365](https://github.com/vinc/moros/pull/365))
- Improve lisp ([#362](https://github.com/vinc/moros/pull/362))
- Improve regex for redirections ([#356](https://github.com/vinc/moros/pull/356))
- Read command line args from userspace programs ([#351](https://github.com/vinc/moros/pull/351))
- Refactor code ([#330](https://github.com/vinc/moros/pull/330))
- Refactor serial ([#336](https://github.com/vinc/moros/pull/336))
- Remove superfluous use of lazy static ([#364](https://github.com/vinc/moros/pull/364))
- Replace ChaCha RNG by HC-128 ([#338](https://github.com/vinc/moros/pull/338))
- Replace clock syscalls with device files ([#345](https://github.com/vinc/moros/pull/345))
- Rewrite network interface ([#334](https://github.com/vinc/moros/pull/334))
- Store current direction in DIR shell variable ([#355](https://github.com/vinc/moros/pull/355))
- Upgrade linked list allocator ([#363](https://github.com/vinc/moros/pull/363))
- Use exit code to set status var ([#360](https://github.com/vinc/moros/pull/360))
- Bump libm from 0.2.2 to 0.2.3 ([#372](https://github.com/vinc/moros/pull/372))
- Bump object from 0.28.3 to 0.28.4 ([#339](https://github.com/vinc/moros/pull/339))
- Bump object from 0.28.4 to 0.29.0 ([#358](https://github.com/vinc/moros/pull/358))
- Bump raw-cpuid from 10.3.0 to 10.4.0 ([#375](https://github.com/vinc/moros/pull/375))
- Bump smoltcp from 0.8.0 to 0.8.1 ([#342](https://github.com/vinc/moros/pull/342))
- Bump spin from 0.9.3 to 0.9.4 ([#369](https://github.com/vinc/moros/pull/369))
- Bump vte from 0.10.1 to 0.11.0 ([#371](https://github.com/vinc/moros/pull/371))
- Bump x86_64 from 0.14.9 to 0.14.10 ([#368](https://github.com/vinc/moros/pull/368))
## 0.7.1 (2022-04-10)
- Add 2048 game ([#295](https://github.com/vinc/moros/pull/295))

4
Cargo.lock generated
View File

@ -70,7 +70,7 @@ dependencies = [
[[package]]
name = "block-buffer"
version = "0.10.0"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
dependencies = [
@ -246,7 +246,7 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "moros"
version = "0.7.1"
version = "0.8.0"
dependencies = [
"acpi",
"aml",

View File

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

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.