From ec7953dcff67f4db62d28e8de3939a237dc557a7 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Wed, 21 Jun 2023 15:46:13 -0700 Subject: [PATCH] Release 0.2.0 ### Changed - Updated Pybind11 to version 3.10, adding Python 3.11 support - Updated install instructions in readme to reflect availability on PyPI - Encode now skips .dds files in its input to prevent needless re-encoding ### Added - Added the `-n` option for bc3 encoding to perform a BC3nm swizzle --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f351d80..2d6b929 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,17 @@ All notable changes to this project will be documented in this file -## 0.1.4 - 2022-10-30 +## 0.2.0 - 2023-06-21 ### Changed - Updated Pybind11 to version 3.10, adding Python 3.11 support +- Updated install instructions in readme to reflect availability on PyPI +- Encode now skips .dds files in its input to prevent needless re-encoding + +### Added + +- Added the `-n` option for bc3 encoding to perform a BC3nm swizzle ## 0.1.3 - 2022-04-13