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

### Changed

- Removed `Sized` bound from `Patchable` trait, restoring dynamic dispatch compatibility.

## [0.5.4] - 2026-01-30

### Added

- Added `cloneable` feature (enabled by default) to optionally derive `Clone` for generated patch types.

### Changed

- **Breaking**: Removed the `Clone` bound from the `Patchable::Patch` associated type.

## [0.5.3] - 2026-01-30

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

[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
[0.5.2]: https://github.com/ShapelessCat/patchable/releases/tag/v0.5.2
[0.5.1]: https://github.com/ShapelessCat/patchable/releases/tag/v0.5.1
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.4"
version = "0.5.5"
rust-version = "1.85"
edition = "2024"
repository = "https://github.com/ShapelessCat/patchable"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
patchable = "0.5.4" # You can use the latest version
patchable = "0.5.5" # You can use the latest version
```

Check this project's Cargo feature flags to see what you want to enable or disable.
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.4", path = "../patchable-macro" }
patchable-macro = { version = "0.5.5", path = "../patchable-macro" }
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
Expand Down