Skip to content

Commit

Permalink
Merge pull request #536 from mkroening/hermit-0.8.1
Browse files Browse the repository at this point in the history
chore: release hermit 0.8.1
  • Loading branch information
mkroening authored Feb 16, 2024
2 parents a6775c5 + 6c33c16 commit 15e48d7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img width="256" align="right" src="https://github.com/hermi-os/.github/blob/main/logo/hermit-logo.svg" />
<img width="256" align="right" src="https://github.com/hermit-os/.github/blob/main/logo/hermit-logo.svg" />

# Hermit for Rust

Expand All @@ -10,7 +10,7 @@ A Rust-based, lightweight unikernel.
Unikernel means, you bundle your application directly with the kernel library, so that it can run without any installed operating system.
This reduces overhead, therefore, interesting applications include virtual machines and high-performance computing.

The kernel is able to run [Rust](https://github.com/hermi-os/hermit-rs) applications, as well as [C/C++/Go/Fortran](https://github.com/hermi-os/hermit-playground) applications.
The kernel is able to run [Rust](https://github.com/hermit-os/hermit-rs) applications, as well as [C/C++/Go/Fortran](https://github.com/hermit-os/hermit-playground) applications.

The repository contains following directories and submodules:

Expand All @@ -23,7 +23,7 @@ The repository contains following directories and submodules:
## Background

**Hermit** is a rewrite of HermitCore in [Rust](https://www.rust-lang.org) developed at [RWTH-Aachen](https://www.rwth-aachen.de).
HermitCore was a research unikernel written in C ([libhermit](https://github.com/hermi-os/libhermit)).
HermitCore was a research unikernel written in C ([libhermit](https://github.com/hermit-os/libhermit)).

The ownership model of Rust guarantees memory/thread-safety and enables us to eliminate many classes of bugs at compile-time.
Consequently, the use of Rust for kernel development promises fewer vulnerabilities in comparison to common programming languages.
Expand All @@ -38,16 +38,16 @@ Rust applications that use the Rust runtime and do not directly use OS services

## Building your own applications

Have a look at [rusty-demo](https://github.com/hermi-os/rusty-demo).
Have a look at [rusty-demo](https://github.com/hermit-os/rusty-demo).


## Use Hermit for C/C++, Go, and Fortran applications

If you are interested to build C/C++, Go, and Fortran applications on top of a Rust-based library operating system, please take a look at [https://github.com/hermi-os/hermit-playground](https://github.com/hermi-os/hermit-playground).
If you are interested to build C/C++, Go, and Fortran applications on top of a Rust-based library operating system, please take a look at [https://github.com/hermit-os/hermit-playground](https://github.com/hermit-os/hermit-playground).

## Wiki

Please use the [Wiki](https://github.com/hermi-os/hermit-rs/wiki) to get further information and configuration options.
Please use the [Wiki](https://github.com/hermit-os/hermit-rs/wiki) to get further information and configuration options.

## Credits

Expand All @@ -74,5 +74,5 @@ at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Hermit is being developed on [GitHub](https://github.com/hermi-os/hermit-rs).
Hermit is being developed on [GitHub](https://github.com/hermit-os/hermit-rs).
Create your own fork, send us a pull request, and chat with us on [Zulip](https://hermit.zulipchat.com/).
2 changes: 1 addition & 1 deletion hermit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hermit"
version = "0.8.0"
version = "0.8.1"
authors = [
"Stefan Lankes <slankes@eonerc.rwth-aachen.de>",
"Martin Kröning <mkroening@posteo.net>",
Expand Down
2 changes: 1 addition & 1 deletion hermit/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl KernelSrc {
}

fn download() -> Self {
let version = "0.6.7";
let version = "0.6.8";
let out_dir = out_dir();
let src_dir = out_dir.join(format!("kernel-{version}"));

Expand Down

0 comments on commit 15e48d7

Please sign in to comment.