diff --git a/CHANGELOG.md b/CHANGELOG.md index fc4fbd4..990c282 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change log +#### 2.0.7 - 2021-02-19 + +- **Enhanced:** feature counts near 0% and 100% will now show a more accurate "<1%" and ">99%" +- **Enhanced:** added more changes to feature counting to make it more consistent +- **Enhanced:** now allowing tuples (not just lists) as parameters for naming datasets +- **Fixed:** appearance of feature numbers above 100 (better alignment) and 1000 (now shown vertically) +- **Fixed:** sorting issue causing feature summaries above 2500 to disappear +- **Fixed:** progress bar issues causing it to be repeated or cause line ending issues + #### 2.0.6 - 2021-02-04 - **Fixed:** report issue introduced in 2.0.5 @@ -8,7 +17,7 @@ - **Fixed:** crashes due to LaTeX escape codes in feature names that were causing "Font family ['STIXGeneral'] not found" errors - **Fixed:** better handling of features named "index" -- **Updated:** made feature count more consistent and clear: taking "target" into account as well as explicitly calling out when features are not present in the comparison data frame +- **Enhanced:** made feature count more consistent and clear: taking "target" into account as well as explicitly calling out when features are not present in the comparison data frame - **Enhanced:** made "Association" buttons more obvious and color-coded (they were a bit too hard to see given their importance) #### 2.0.4 - 2020-12-10 diff --git a/README.md b/README.md index 65638e5..6155725 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![v](https://img.shields.io/badge/version-2.0.6-blue) ![v](https://img.shields.io/badge/updated-February%204th,%20%202021-green) +![v](https://img.shields.io/badge/version-2.0.7-blue) ![v](https://img.shields.io/badge/updated-February%2019th,%20%202021-green) ![Sweetviz Logo](http://cooltiming.com/SV/logo.png) diff --git a/sweetviz/__init__.py b/sweetviz/__init__.py index 44af18d..68c85a1 100644 --- a/sweetviz/__init__.py +++ b/sweetviz/__init__.py @@ -1,7 +1,7 @@ # sweetviz public interface # ----------------------------------------------------------------------------------- __title__ = 'sweetviz' -__version__ = "2.0.6" +__version__ = "2.0.7" __author__ = "Francois Bertrand" __license__ = 'MIT'