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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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).

## [0.5.6] - 2026-02-16

### Changed

- **Breaking**: Removed `cloneable` feature.
- **Breaking**: Removed automatic `Debug` and `PartialEq` derivations from generated patch types. Users should derive these manually if needed.

### Fixed

- Fixed `where` clause placement in generated code.
- Fixed CI configuration for coverage reporting.

## [0.5.5] - 2026-01-30

### Changed
Expand Down Expand Up @@ -96,6 +108,7 @@ Early development, and you shouldn't use these versions for your projects.
- Automatic patch type generation
- Basic field patching functionality

[0.5.6]: https://github.com/ShapelessCat/patchable/releases/tag/v0.5.6
[0.5.5]: https://github.com/ShapelessCat/patchable/releases/tag/v0.5.5
[0.5.4]: https://github.com/ShapelessCat/patchable/releases/tag/v0.5.4
[0.5.3]: https://github.com/ShapelessCat/patchable/releases/tag/v0.5.3
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["patchable", "patchable-macro"]
resolver = "3"

[workspace.package]
version = "0.5.5"
version = "0.5.6"
rust-version = "1.85"
edition = "2024"
repository = "https://github.com/ShapelessCat/patchable"
Expand Down
2 changes: 1 addition & 1 deletion patchable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme.workspace = true
path = "src/lib.rs"

[dependencies]
patchable-macro = { version = "0.5.5", path = "../patchable-macro" }
patchable-macro = { version = "0.5.6", path = "../patchable-macro" }
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
Expand Down