Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 23 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@
# Changelog

## 0.3.0

### New Features

* Add ARMv7a (32-bit) architecture support (https://github.com/arceos-org/axcpu/pull/16).
* Add generic timer abstraction for AArch64 and ARM architectures (https://github.com/arceos-org/axcpu/pull/23).

### Breaking Changes

* Upgrade [page_table_multiarch](https://crates.io/crates/page_table_multiarch) crate to v0.6, which adds ARM support. (https://github.com/arceos-org/axcpu/pull/22).
* Upgrade [percpu](https://crates.io/crates/percpu) crate to v0.3, see [percpu v0.3.0 changelog](https://github.com/arceos-org/percpu/blob/main/CHANGELOG.md#030).

### Bug Fixes

* Fix kernel stack pointer save on LoongArch64 (https://github.com/arceos-org/axcpu/pull/14).
* Set sstatus::FS before fp restore/clear in `switch_to` on riscv64 (https://github.com/arceos-org/axcpu/pull/30).

## 0.2.2

### Fixes
### Bug Fixes

* [Fix compile error on riscv when enable `uspace` feature](https://github.com/arceos-org/axcpu/pull/12).
* Fix compile error on riscv when enabling `uspace` feature (https://github.com/arceos-org/axcpu/pull/12).

## 0.2.1

### Fixes
### Bug Fixes

* [Pad TrapFrame to multiple of 16 bytes for riscv64](https://github.com/arceos-org/axcpu/pull/11).
* Pad TrapFrame to multiple of 16 bytes for riscv64 (https://github.com/arceos-org/axcpu/pull/11).

## 0.2.0

Expand All @@ -20,8 +37,8 @@

### New Features

* [Add FP state switch for riscv64](https://github.com/arceos-org/axcpu/pull/2).
* [Add hypervisor support for aarch64](https://github.com/arceos-org/axcpu/pull/10).
* Add FP state switch for riscv64 (https://github.com/arceos-org/axcpu/pull/2).
* Add hypervisor support for aarch64 (https://github.com/arceos-org/axcpu/pull/10).

### Other Improvements

Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
name = "axcpu"
version = "0.2.2"
version = "0.3.0"
edition = "2021"
authors = [
"Yuekai Jia <equation618@gmail.com>",
"Youjie Zheng <Azure_stars@126.com>",
"yfblock <321353225@qq.com>",
"Debin <luodebin@kylinos.cn>",
"yanjuguang <coolyanjg@163.com>",
"Grow Zheng <hhmcn@outlook.com>",
"Su Mingxian <aarkegz@gmail.com>",
Expand Down Expand Up @@ -61,4 +62,10 @@ new_without_default = "allow"

[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-none", "aarch64-unknown-none-softfloat", "riscv64gc-unknown-none-elf", "loongarch64-unknown-none-softfloat"]
targets = [
"x86_64-unknown-none",
"aarch64-unknown-none-softfloat",
"riscv64gc-unknown-none-elf",
"loongarch64-unknown-none-softfloat",
"armv7a-none-eabi",
]
Loading