# 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.1.0] - 2026-04-18
### Added
- `SharedMemoryLink<T, Access>` — typed RAII handle to a named Windows file-mapping object.
- `ReadOnly` and `ReadWrite` access-mode markers.
- `SharedMemoryLink::open` — open an existing mapping read-only.
- `SharedMemoryLink::create` — create a fresh zero-initialised mapping; errors if the name is already taken.
- `SharedMemoryLink::get_or_create` — create or open an existing mapping for read-write.
- `SharedMemoryLink::open_existing` — open an existing mapping for read-write.
- `SharedMemoryLink::get` / `get_mut` — unsafe typed access to the mapped region.
- `SharedMemoryError` with OS error sources on every Win32 failure variant.