diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6ae769d..0859244 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,6 +11,32 @@ The format is based on `Keep a Changelog`_, and this project adheres to `Semanti Categories for changes are: Added, Changed, Deprecated, Removed, Fixed, Security. +Version `1.0.1 `__ +--------------------------------------------------------------------- + +Release date: 2024-12-07. +`Full commit changelog `__. + +This is a bugfix release to address incorrect RGB stdev values. + +.. _v1.0.1 Fixed: + +Fixed +~~~~~ + +- RGB_STDEV for bioscan1m and bioscan5m was corrected to address a miscalculation when estimating the pixel RGB standard deviation. + (`#2 `__) + +.. _v1.0.1 Documentation: + +Documentation +~~~~~~~~~~~~~ + +- Corrected example import of RGB_MEAN and RGB_STDEV. + (`#1 `__) +- General documentation fixes and improvements. + + Version `1.0.0 `__ --------------------------------------------------------------------- diff --git a/bioscan_dataset/__meta__.py b/bioscan_dataset/__meta__.py index 89d39aa..6c8f0f1 100644 --- a/bioscan_dataset/__meta__.py +++ b/bioscan_dataset/__meta__.py @@ -1,6 +1,6 @@ name = "bioscan-dataset" path = name.lower().replace("-", "_").replace(" ", "_") -version = "1.0.0" +version = "1.0.1" author = "Scott C. Lowe" author_email = "scott.code.lowe@gmail.com" description = "PyTorch torchvision-style datasets for BIOSCAN-1M and BIOSCAN-5M."