Skip to content

Commit

Permalink
Bump to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
equation314 committed Jul 11, 2024
1 parent 72a1a72 commit 842607c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2022-01-20
profile: minimal
components: rust-src
- name: Build docs
Expand All @@ -30,7 +30,7 @@ jobs:
cargo doc --target ${target}
mv target/${target}/doc doc/${target}
done
for target in x86_64-unknown-linux-gnu
for target in x86_64-unknown-linux-gnu
do
rustup target add ${target}
cargo doc --target ${target}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.0] - 2024-07-11

- Use `FSGSBASE` instructions to read/write corresponding registers (#14).

## [0.9.0] - 2022-02-26

- **[Breaking]** Fix dependencies and asm macros for new nightly.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trapframe"
version = "0.9.0"
version = "0.10.0"
authors = [
"Runji Wang <[email protected]>",
"Jiajie Chen <[email protected]>",
Expand All @@ -23,8 +23,8 @@ exclude = ["docs", ".idea"]
[dependencies]

[target.'cfg(target_arch = "x86_64")'.dependencies]
x86_64 = "0.14.8"
raw-cpuid = "10"
x86_64 = "0.15"
raw-cpuid = "11.0"

[features]
default = []
Expand Down

0 comments on commit 842607c

Please sign in to comment.