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

## [Unreleased]

## [0.2.0] - 2026-03-05

### Added
- Added `axallocator = "0.2"` as a dependency

### Changed
- `AllocError`, `AllocResult`, `BaseAllocator`, `ByteAllocator`, `PageAllocator`, and `IdAllocator` are now re-exported from `axallocator` instead of being defined locally
- Updated Rust toolchain to `nightly-2026-02-25`
- Benchmarks no longer require `--features bench`; `criterion` and `rand` moved to `[dev-dependencies]`

### Removed
- Removed locally defined allocator trait and error type definitions (now provided by `axallocator`)
- Removed the deprecated `bench` feature flag

## [0.1.1] - 2026-02-06

### Added
Expand Down Expand Up @@ -54,6 +68,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- DMA32 pages test cases
- Comprehensive edge case coverage

## [Unreleased]: https://github.com/arceos-hypervisor/buddy-slab-allocator/compare/v0.1.1...HEAD
## [Unreleased]: https://github.com/arceos-hypervisor/buddy-slab-allocator/compare/v0.2.0...HEAD
## [0.2.0]: https://github.com/arceos-hypervisor/buddy-slab-allocator/compare/v0.1.1...v0.2.0
## [0.1.1]: https://github.com/arceos-hypervisor/buddy-slab-allocator/compare/v0.1.0...v0.1.1
## [0.1.0]: https://github.com/arceos-hypervisor/buddy-slab-allocator/releases/tag/v0.1.0
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buddy-slab-allocator"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
authors = ["Song Zhiyong <songzhyo@qq.com>"]
description = "Memory allocator with Buddy and Slab allocation"
Expand All @@ -16,9 +16,6 @@ default = []
log = ["dep:log"]
tracking = []

# Deprecated
bench = []

[dependencies]
axallocator = "0.2"
cfg-if = "1.0"
Expand Down
Loading