diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b1537d..936dab2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.9.7 (2023-03-28) +### Other +* Allow configuration of service address ([#143](https://github.com/WIPACrepo/file_catalog/issues/143)) ([`52d29a3`](https://github.com/WIPACrepo/file_catalog/commit/52d29a3949015d850963a09b92482e4b8af5c4b4)) + ## v1.9.6 (2023-03-24) ### Other * PyMongo 4 is too advanced for us ([#142](https://github.com/WIPACrepo/file_catalog/issues/142)) ([`66d2bb1`](https://github.com/WIPACrepo/file_catalog/commit/66d2bb1e55fd790d8814ecf2e2acb10f3621d096)) diff --git a/file_catalog/__init__.py b/file_catalog/__init__.py index 291fd62..11afa4d 100644 --- a/file_catalog/__init__.py +++ b/file_catalog/__init__.py @@ -11,7 +11,7 @@ # is zero for an official release, positive for a development branch, # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "1.9.6" +__version__ = "1.9.7" version_info = ( int(__version__.split(".")[0]), int(__version__.split(".")[1]),