From b744a927cb13fc361af516a8b99ba5ab63bbc259 Mon Sep 17 00:00:00 2001 From: Kornel Date: Wed, 7 Aug 2024 14:58:35 +0100 Subject: [PATCH] Changelog --- CHANGELOG.md | 13 +++++++++++++ README.md | 1 + 2 files changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f575b5d..6143faa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ +# 0.8.47 + +* Renamed `map_c` to `map_colors` +* Added `rgb::prelude::*` for imoporting traits without naming them (for forward-compatibilty) + +# 0.8.46 + +* Changed `AsRef` to dereference as arrays instead of slices (AsRef<[C]>` → `AsRef<[C; 4]>`) + +# 0.8.45 + +* Added `From` for 1-tuples + # 0.8.43/0.8.44 * Reverted changes to `ComponentBytes`. `bytemuck` is still recommended instead. diff --git a/README.md b/README.md index 2f93326..164c8d1 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ Planned changes: 1. Update to the latest version of 0.8, and fix all deprecation warnings. - rename `.alpha()` to `.with_alpha()` + - rename `.map_c()` to `.map_colors()` 2. Change field access on `GrayAlpha` from `.0` and `.1` to `.v` and `.a` where possible. 3. Use the `bytemuck` crate for conversions from/to bytes instead of `ComponentBytes` trait. Disable the `as-bytes` feature if possible.