diff --git a/CHANGELOG.md b/CHANGELOG.md index 606790f..7a973f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog -## HEAD +## 1.8.0 - 2023-11-17 ### Fix -Regression with Mean Squared Error loss and Mean Average error loss incorrectly -clamped the gradients, leading to incorrect predictions. +- Regression with Mean Squared Error loss and Mean Average error loss + incorrectly clamped the gradients, leading to incorrect predictions. ## 1.8.0 - 2023-11-15 diff --git a/configure/setup.py b/configure/setup.py index 57cf46c..2c52324 100644 --- a/configure/setup.py +++ b/configure/setup.py @@ -21,7 +21,7 @@ from setuptools.command.install import install from setuptools.dist import Distribution -_VERSION = "1.8.0" +_VERSION = "1.8.1" with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() diff --git a/tensorflow_decision_forests/__init__.py b/tensorflow_decision_forests/__init__.py index 0c33c66..c561f2e 100644 --- a/tensorflow_decision_forests/__init__.py +++ b/tensorflow_decision_forests/__init__.py @@ -51,7 +51,7 @@ """ -__version__ = "1.8.0" +__version__ = "1.8.1" __author__ = "Mathieu Guillame-Bert" compatible_tf_versions = ["2.15.0"]