Skip to content

Commit 0e53eef

Browse files
authored
Merge pull request #386 from rust-osdev/release
Release v0.14.10
2 parents 1d45d06 + e28c280 commit 0e53eef

File tree

2 files changed

+29
-17
lines changed

2 files changed

+29
-17
lines changed

Cargo.toml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,13 @@ authors = [
99
]
1010
description = "Support for x86_64 specific instructions, registers, and structures."
1111
documentation = "https://docs.rs/x86_64"
12-
keywords = [
13-
"amd64",
14-
"x86",
15-
"x86_64",
16-
"no_std",
17-
]
18-
categories = [
19-
"no-std",
20-
]
12+
keywords = ["amd64", "x86", "x86_64", "no_std"]
13+
categories = ["no-std"]
2114
license = "MIT/Apache-2.0"
2215
name = "x86_64"
2316
readme = "README.md"
2417
repository = "https://github.com/rust-osdev/x86_64"
25-
version = "0.14.9"
18+
version = "0.14.10"
2619
edition = "2018"
2720
rust-version = "1.57" # Needed to support panic! in const fns
2821

@@ -33,9 +26,9 @@ volatile = "0.4.4"
3326
rustversion = "1.0.5"
3427

3528
[features]
36-
default = [ "nightly", "instructions" ]
29+
default = ["nightly", "instructions"]
3730
instructions = []
38-
nightly = [ "const_fn", "step_trait", "abi_x86_interrupt", "doc_cfg" ]
31+
nightly = ["const_fn", "step_trait", "abi_x86_interrupt", "doc_cfg"]
3932
abi_x86_interrupt = []
4033
const_fn = []
4134
step_trait = []
@@ -46,11 +39,11 @@ external_asm = []
4639
inline_asm = []
4740

4841
[package.metadata.release]
49-
no-dev-version = true
42+
dev-version = false
5043
pre-release-replacements = [
51-
{ file="Changelog.md", search="# Unreleased", replace="# Unreleased\n\n# {{version}} – {{date}}", exactly=1 },
44+
{ file = "Changelog.md", search = "# Unreleased", replace = "# Unreleased\n\n# {{version}} – {{date}}", exactly = 1 },
5245
]
5346
pre-release-commit-message = "Bump version to {{version}}"
54-
disable-push = true
55-
disable-publish = true
56-
disable-tag = true
47+
push = false
48+
publish = false
49+
tag = false

Changelog.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Unreleased
22

3+
# 0.14.10 – 2022-07-10
4+
5+
## New Features
6+
7+
- [Add `registers::debug`](https://github.com/rust-osdev/x86_64/pull/286)
8+
- [Provide null segment selector as associated constant on `SegmentSelector`](https://github.com/rust-osdev/x86_64/pull/373)
9+
- [Add getters for the page table frame mapping](https://github.com/rust-osdev/x86_64/pull/385)
10+
11+
## Fixes
12+
13+
- [Fix align functions](https://github.com/rust-osdev/x86_64/pull/375)
14+
- [Correct wrong comment](https://github.com/rust-osdev/x86_64/pull/374)
15+
16+
## Other Improvements
17+
18+
- [Cleanup Segment macros](https://github.com/rust-osdev/x86_64/pull/376)
19+
- [Update comment and docs](https://github.com/rust-osdev/x86_64/pull/382)
20+
21+
322
# 0.14.9 - 2022-03-31
423

524
## New Features

0 commit comments

Comments
 (0)