Skip to content
Open
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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2](https://github.com/olukowski/celer/compare/celer-v0.1.1...celer-v0.1.2) - 2026-03-15

### Added

- *(syscalls)* support 32-bit x86 ([#6](https://github.com/olukowski/celer/pull/6))
- create very thin wrappers for syscalls
- *(system)* add linux syscalls crate

### Fixed

- *(syscalls)* replace usize with size_t

### Other

- run on aarch64 linux
- *(syscalls)* use strict provenance APIs
- *(coverage)* use coveralls and branch coverage
- *(miri)* return -ENOSYS for unsupported syscalls and skip
- *(codecov)* use files instead of file
- *(coverage)* run coverage with nightly toolchain

## [0.1.1](https://github.com/olukowski/celer/compare/v0.1.0...v0.1.1) - 2026-03-13

### Other
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "celer"
version = "0.1.1"
version = "0.1.2"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "A framework for building fast software"
Expand Down
26 changes: 26 additions & 0 deletions system/linux/syscalls/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

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).

## [Unreleased]

## [0.1.1](https://github.com/olukowski/celer/compare/celer_system_linux_syscalls-v0.1.0...celer_system_linux_syscalls-v0.1.1) - 2026-03-15

### Added

- *(syscalls)* support 32-bit x86 ([#6](https://github.com/olukowski/celer/pull/6))
- create very thin wrappers for syscalls

### Fixed

- *(syscalls)* replace usize with size_t

### Other

- run on aarch64 linux
- *(syscalls)* use strict provenance APIs
- *(coverage)* use coveralls and branch coverage
- *(miri)* return -ENOSYS for unsupported syscalls and skip
2 changes: 1 addition & 1 deletion system/linux/syscalls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "celer_system_linux_syscalls"
version = "0.1.0"
version = "0.1.1"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Linux syscalls for Celer"
Expand Down