Skip to content

Commit 768f2a7

Browse files
committed
Merge tag 'v0.10.11' into next
(cargo-release) bootloader version 0.10.11
2 parents 8c00c9e + 10c5ea0 commit 768f2a7

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

Diff for: .github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
uses: actions-rs/cargo@v1
5858
with:
5959
command: test
60+
args: "-- --test-threads 1"
6061

6162
- name: "Example: `basic`"
6263
working-directory: examples/basic

Diff for: Changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Unreleased
22

3+
# 0.10.11 – 2022-01-09
4+
5+
- Remove feature flag for `lang_items`, `asm` and `global_asm` ([#210](https://github.com/rust-osdev/bootloader/pull/210))
6+
- Use `set_reg` method of `CS`, `DS`, `ES` and `SS` segment structs ([#211](https://github.com/rust-osdev/bootloader/pull/211))
7+
38
# 0.10.10 – 2021-12-23
49

510
- Fix `asm` imports on latest nightly ([#209](https://github.com/rust-osdev/bootloader/pull/209))

Diff for: bios/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(lang_items)]
1+
22
#![no_std]
33
#![no_main]
44

0 commit comments

Comments
 (0)