Skip to content
Draft
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).

## [0.26.5] - 2024-12-20

### Fixed

- Fixed the build issue of undefined import self::consts on the loongarch64.
([#2568](https://github.com/nix-rust/nix/pull/2568))

Comment on lines +6 to +12
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add the changelog entry there: https://github.com/nix-rust/nix/tree/master/changelog

## [0.26.4] - 2023-08-28

### Fixed
Expand Down
3 changes: 2 additions & 1 deletion src/sys/ioctl/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ pub const TYPEBITS: ioctl_num_type = 8;
target_arch = "mips64",
target_arch = "powerpc",
target_arch = "powerpc64",
target_arch = "sparc64"
target_arch = "sparc64",
target_arch = "loongarch64"
))]
mod consts {
#[doc(hidden)]
Expand Down