diff --git a/HISTORY.rst b/HISTORY.rst index 1c66c20..c50baed 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +0.64.0 (2023-07-11) +------------------- + +* See release notes and changelog on GitHub: https://github.com/projectnessie/pynessie/releases/tag/nessie-0.64.0 + 0.63.0 (2023-07-11) ------------------- diff --git a/pynessie/__init__.py b/pynessie/__init__.py index 30ba975..e40df2e 100644 --- a/pynessie/__init__.py +++ b/pynessie/__init__.py @@ -23,7 +23,7 @@ __author__ = """Project Nessie""" __email__ = "nessie-release-builder@dremio.com" -__version__ = "0.63.0" +__version__ = "0.64.0" def get_config(config_dir: Optional[str] = None, args: Optional[dict] = None) -> confuse.Configuration: diff --git a/setup.cfg b/setup.cfg index 4587a6f..067d41e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.63.0 +current_version = 0.64.0 commit = False tag = False diff --git a/setup.py b/setup.py index 0b78b9d..ea61b48 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.63.0", + version="0.64.0", zip_safe=False, )