diff --git a/HISTORY.rst b/HISTORY.rst index c50baeda..08e2b385 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +0.64.2 (2023-08-24) +------------------- + +* See release notes and changelog on GitHub: https://github.com/projectnessie/pynessie/releases/tag/nessie-0.64.2 + 0.64.0 (2023-07-11) ------------------- diff --git a/pynessie/__init__.py b/pynessie/__init__.py index 70bca2a3..8e52edaa 100644 --- a/pynessie/__init__.py +++ b/pynessie/__init__.py @@ -23,7 +23,7 @@ __author__ = """Project Nessie""" __email__ = "nessie-release-builder@dremio.com" -__version__ = "0.64.1" +__version__ = "0.64.2" def get_config(config_dir: Optional[str] = None, args: Optional[dict] = None) -> confuse.Configuration: diff --git a/setup.cfg b/setup.cfg index 1a75479d..8a8ac25e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.64.1 +current_version = 0.64.2 commit = False tag = False diff --git a/setup.py b/setup.py index 496305bd..a46641a1 100644 --- a/setup.py +++ b/setup.py @@ -68,6 +68,6 @@ name="pynessie", packages=find_packages(include=["pynessie", "pynessie.*"]), url="https://github.com/projectnessie/nessie", - version="0.64.1", + version="0.64.2", zip_safe=False, )