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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@ 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-04-25

### Added

- *(syscalls)* thin wrappers around raw syscalls ([#10](https://github.com/olukowski/celer/pull/10))
- *(syscalls)* add x86_64 support ([#9](https://github.com/olukowski/celer/pull/9))
- *(syscalls)* aarch64 support ([#8](https://github.com/olukowski/celer/pull/8))
- *(syscalls)* full coverage of Linux 1.0 syscalls ([#7](https://github.com/olukowski/celer/pull/7))
- *(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

- repair syscalls rustdoc links
- *(syscalls)* replace usize with size_t

### Other

- delete codecov.yml
- 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
6 changes: 3 additions & 3 deletions 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 All @@ -11,5 +11,5 @@ readme = "README.md"
members = ["system/linux/ctypes", "system/linux/syscalls"]

[workspace.dependencies]
celer_system_linux_ctypes = { path = "system/linux/ctypes", version = "0.1.0" }
celer_system_linux_syscalls = { path = "system/linux/syscalls", version = "0.1.0" }
celer_system_linux_ctypes = { path = "system/linux/ctypes", version = "0.1.1" }
celer_system_linux_syscalls = { path = "system/linux/syscalls", version = "0.2.0" }
15 changes: 15 additions & 0 deletions system/linux/ctypes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 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_ctypes-v0.1.0...celer_system_linux_ctypes-v0.1.1) - 2026-04-25

### Added

- *(syscalls)* add x86_64 support ([#9](https://github.com/olukowski/celer/pull/9))
- *(syscalls)* aarch64 support ([#8](https://github.com/olukowski/celer/pull/8))
2 changes: 1 addition & 1 deletion system/linux/ctypes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "celer_system_linux_ctypes"
version = "0.1.0"
version = "0.1.1"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Linux C types for Celer"
Expand Down
31 changes: 31 additions & 0 deletions system/linux/syscalls/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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.2.0](https://github.com/olukowski/celer/compare/celer_system_linux_syscalls-v0.1.0...celer_system_linux_syscalls-v0.2.0) - 2026-04-25

### Added

- *(syscalls)* thin wrappers around raw syscalls ([#10](https://github.com/olukowski/celer/pull/10))
- *(syscalls)* add x86_64 support ([#9](https://github.com/olukowski/celer/pull/9))
- *(syscalls)* aarch64 support ([#8](https://github.com/olukowski/celer/pull/8))
- *(syscalls)* full coverage of Linux 1.0 syscalls ([#7](https://github.com/olukowski/celer/pull/7))
- *(syscalls)* support 32-bit x86 ([#6](https://github.com/olukowski/celer/pull/6))
- create very thin wrappers for syscalls

### Fixed

- repair syscalls rustdoc links
- *(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.2.0"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Linux syscalls for Celer"
Expand Down