diff --git a/CHANGELOG.md b/CHANGELOG.md index de3a13a..0d037b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v3.1.1 (2023-03-15) +### Fix +* Pretrained config typo ([`e6a3778`](https://github.com/siemdejong/dpat/commit/e6a37785d9b9ef49bdbf40eb009d83f35edff82e)) + ## v3.1.0 (2023-03-15) ### Feature * Add num_subfolds parameter to create_splits ([`dfe7ceb`](https://github.com/siemdejong/dpat/commit/dfe7ceb3380fef3ea595cd3f7e68ed426b33989d)) diff --git a/dpat/__init__.py b/dpat/__init__.py index 7cce9cc..68850a8 100644 --- a/dpat/__init__.py +++ b/dpat/__init__.py @@ -10,7 +10,7 @@ logging.getLogger("dpat").addHandler(logging.NullHandler()) -__version__ = "3.1.0" +__version__ = "3.1.1" def install_windows(vipsbin: str): diff --git a/pyproject.toml b/pyproject.toml index c2de8c9..2dee9d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dpat" -version = "3.1.0" +version = "3.1.1" authors = [ {name="Siem de Jong", email="siem.dejong@hotmail.nl"}, ]