diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d8c7d1..e3eb544 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [v0.1.7](https://github.com/ykumards/simtorch/releases/tag/v0.1.7) - 2022-12-03 + ## [v0.1.6](https://github.com/ykumards/simtorch/releases/tag/v0.1.6) - 2022-12-03 ## [v0.1.5](https://github.com/ykumards/simtorch/releases/tag/v0.1.5) - 2022-12-03 diff --git a/simtorch/model/__init__.py b/simtorch/model/__init__.py index 314deb8..426fe36 100644 --- a/simtorch/model/__init__.py +++ b/simtorch/model/__init__.py @@ -1 +1 @@ -from simtorch.model.sim_model import SimilarityModel \ No newline at end of file +from simtorch.model.sim_model import SimilarityModel diff --git a/simtorch/similarity/__init__.py b/simtorch/similarity/__init__.py index 9f94f1d..c6aa252 100644 --- a/simtorch/similarity/__init__.py +++ b/simtorch/similarity/__init__.py @@ -1,2 +1,2 @@ from simtorch.similarity.base_similarity import BaseSimilarity -from simtorch.similarity.cka import CKA \ No newline at end of file +from simtorch.similarity.cka import CKA diff --git a/simtorch/version.py b/simtorch/version.py index 3a29812..d4a1c6d 100644 --- a/simtorch/version.py +++ b/simtorch/version.py @@ -2,7 +2,7 @@ _MINOR = "1" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "6" +_PATCH = "7" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = ""