syscall.rs/CHANGELOG.md

136 lines
3 KiB
Markdown
Raw Permalink Normal View History

2017-01-14 02:55:06 +01:00
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
2022-03-24 15:24:16 +01:00
## [v0.2.7] - 2022-03-24
### Added
- Added support for Aarch64 macOS (M1)
2022-02-04 12:48:02 +01:00
## [v0.2.6] - 2022-02-04
### Changed
- architectures aarch64, riscv64 and x86_64 now use the stable `asm!` macro. this crate will work on
stable Rust 1.59+ when compiled to those architectures
## [v0.2.5] - 2021-08-14
### Added
- Added support for Android
2021-05-15 21:42:04 +02:00
## [v0.2.4] - 2021-05-15
### Added
- 64-bit RISC-V support
- Linux 5.12 system calls
### Fixed
- cross-compilation to 32-bit ARM
## [v0.2.3] - 2020-07-28
### Changed
- switch from `asm!` to `llvm_asm!`
2017-11-06 00:51:38 +01:00
## [v0.2.2] - 2017-11-06
### Added
- The missing STATX system call.
2017-05-06 16:33:19 +02:00
## [v0.2.1] - 2017-05-06
### Added
- Some ARM specific syscals.
2017-02-27 15:16:25 +01:00
## [v0.2.0] - 2017-02-27
### Added
- More syscalls. Syscalls are now generated from the latest Linux version (4.10
at the time of writing this) source code.
### Changed
- [breaking-change]. Some syscalls have been renamed to match the Linux source
code.
- ARM
- SYNC_FILE_RANGE2 -> ARM_SYNC_FILE_RANGE
- SPARC64
- GETRESGID -> GETRESGID32
- GETRESUID -> GETRESUID32
- SETRESGID -> SETRESGID32
- SETRESUID -> SETRESUID32
### Fixed
- x86 syscall6. It was hitting rust-lang/rust#39098
2017-02-04 02:22:06 +01:00
## [v0.1.5] - 2017-02-03
### Fixed
- The syscall number for GETRANDOM on x86
2017-02-02 06:01:58 +01:00
## [v0.1.4] - 2017-02-02
### Added
- GETRANDOM and NEWFSTATAT syscalls
2017-01-21 18:38:18 +01:00
## [v0.1.3] - 2017-01-21
### Fixed
- Error when using MIPS' syscall5/syscall6 with optimizations enabled
2017-01-21 17:16:52 +01:00
## [v0.1.2] - 2017-01-21
### Added
- syscall5 and syscall6 for mips
2017-01-15 02:16:10 +01:00
## [v0.1.1] - 2017-01-14
2017-01-15 01:53:16 +01:00
### Fixed
- syscall2 for linux-aarch64. There was a type in the register constraints.
2017-01-14 02:55:06 +01:00
## v0.1.0 - 2017-01-13
Initial release. Forked from [syscall] v0.2.1.
[syscall]: https://crates.io/crates/syscall
- Support for ARM, Aarch64, MIPS, MIPS64, PowerPC, PowerPC64, SPARC64, x86 and
x86_64 Linux
2017-01-15 01:53:16 +01:00
2017-01-14 02:55:06 +01:00
- Support for x86_64 macOS
2017-01-15 01:53:16 +01:00
2017-01-14 02:55:06 +01:00
- Support for x86_64 FreeBSD
2022-03-24 15:24:16 +01:00
[Unreleased]: https://github.com/japaric/syscall.rs/compare/v0.2.7...HEAD
[v0.2.7]: https://github.com/japaric/syscall.rs/compare/v0.2.6...v0.2.7
2022-02-04 12:48:02 +01:00
[v0.2.6]: https://github.com/japaric/syscall.rs/compare/v0.2.5...v0.2.6
[v0.2.5]: https://github.com/japaric/syscall.rs/compare/v0.2.4...v0.2.5
2021-05-15 21:42:04 +02:00
[v0.2.4]: https://github.com/japaric/syscall.rs/compare/v0.2.3...v0.2.4
[v0.2.3]: https://github.com/japaric/syscall.rs/compare/v0.2.2...v0.2.3
2017-11-06 00:51:38 +01:00
[v0.2.2]: https://github.com/japaric/syscall.rs/compare/v0.2.1...v0.2.2
2017-05-06 16:33:19 +02:00
[v0.2.1]: https://github.com/japaric/syscall.rs/compare/v0.2.0...v0.2.1
2017-02-27 15:16:25 +01:00
[v0.2.0]: https://github.com/japaric/syscall.rs/compare/v0.1.5...v0.2.0
2017-02-04 02:22:06 +01:00
[v0.1.5]: https://github.com/japaric/syscall.rs/compare/v0.1.4...v0.1.5
2017-02-02 06:01:58 +01:00
[v0.1.4]: https://github.com/japaric/syscall.rs/compare/v0.1.3...v0.1.4
2017-01-21 18:38:18 +01:00
[v0.1.3]: https://github.com/japaric/syscall.rs/compare/v0.1.2...v0.1.3
2017-01-21 17:16:52 +01:00
[v0.1.2]: https://github.com/japaric/syscall.rs/compare/v0.1.1...v0.1.2
2017-01-15 02:16:10 +01:00
[v0.1.1]: https://github.com/japaric/syscall.rs/compare/v0.1.0...v0.1.1