From d7d42946eaccba451ceb1b17c3667820eb4273af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marin=20Ver=C5=A1i=C4=87?= Date: Mon, 8 Jan 2024 20:44:25 +0300 Subject: [PATCH] version bump to 0.6.0 --- CHANGELOG.md | 21 ++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 785bcb5..4eae948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0] - 2024-01-08 + ### Added -- Support default generic params in main trait - Support bounds for main trait parameters - Support const parameters in main trait +- Support default generic types in main trait +- Support multiple blanket impls on different trait generics +- Support for resolution of parameters not bounded by trait or self type + +### Changed + - Keep original trait param identifiers +### Fixed + +- Fix generation of main trait generics + ## [0.5.0] - 2023-11-23 ### Added @@ -30,17 +41,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- add input validation -- add support for dispatch on unsized types +- Add input validation +- Add support for dispatch on unsized types ## [0.2.0] - 2023-09-24 ### Added -- enable dispatch on where clause bounded type +- Enable dispatch on where clause bounded type ### Changed -- don't require collection of type param identifiers to be ordered +- Don't require collection of type param identifiers to be ordered ## [0.1.0] - 2023-09-23 diff --git a/Cargo.toml b/Cargo.toml index 1e81c29..d20be9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "disjoint_impls" -version = "0.5.0" +version = "0.6.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/mversic/disjoint_impls"