From 852fc0d27e69ff42b493a2577a61dac25354eab5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Mar 2026 15:03:53 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.toml | 2 +- system/linux/syscalls/CHANGELOG.md | 26 ++++++++++++++++++++++++++ system/linux/syscalls/Cargo.toml | 2 +- 4 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 system/linux/syscalls/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 436e79b..ff8ad50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index af1ad48..a0dbfe0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/system/linux/syscalls/CHANGELOG.md b/system/linux/syscalls/CHANGELOG.md new file mode 100644 index 0000000..4a76cdb --- /dev/null +++ b/system/linux/syscalls/CHANGELOG.md @@ -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 diff --git a/system/linux/syscalls/Cargo.toml b/system/linux/syscalls/Cargo.toml index e38b5fd..1e72e4f 100644 --- a/system/linux/syscalls/Cargo.toml +++ b/system/linux/syscalls/Cargo.toml @@ -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"