diff --git a/CHANGELOG.md b/CHANGELOG.md index cd00d1f..09002fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ # CHANGELOG +## v0.7.1 (2024-07-23) + +### Fix + +* fix: total_dataset eval should omit too close points and logger wrong best_records ([`e589830`](https://github.com/Atticuszz/AB_GICP/commit/e5898300b41c5bf265aed1d577f6b70a781266ea)) + ## v0.7.0 (2024-07-21) ### Chore +* chore(release): bump version to v0.7.0 ([`6e72a8c`](https://github.com/Atticuszz/AB_GICP/commit/6e72a8ce2e710be851f4a675be9b609419654ae1)) + * chore: format train ([`afb8592`](https://github.com/Atticuszz/AB_GICP/commit/afb8592a1a83688122b8887356308cfb19fdcda7)) * chore: format loss func ([`87ae6e5`](https://github.com/Atticuszz/AB_GICP/commit/87ae6e59782cc9633bcb44b8a8cffd442b45b630)) diff --git a/pyproject.toml b/pyproject.toml index e06f6d3..f759f77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "AB-GICP" -version = "0.7.0" +version = "0.7.1" description = "" authors = ["Atticuszz <1831768457@qq.com>"] readme = "README.md" diff --git a/src/__init__.py b/src/__init__.py index 6c92aab..950d19c 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -6,4 +6,4 @@ @Description : """ -__version__ = "0.7.0" +__version__ = "0.7.1"