diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..dc56ef3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.3.0](https://github.com/Milind220/kicad-ipc-rs/compare/v0.2.0...v0.3.0) - 2026-02-22 + +### Added + +- expose via layer spans in typed model and CLI diff --git a/Cargo.lock b/Cargo.lock index 19b25e9..24fb61c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -56,7 +56,7 @@ dependencies = [ [[package]] name = "kicad-ipc-rs" -version = "0.2.0" +version = "0.3.0" dependencies = [ "nng", "prost", diff --git a/Cargo.toml b/Cargo.toml index 4ce1127..d531894 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kicad-ipc-rs" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "MIT" description = "Rust client library for the KiCad IPC API (async-first)"