diff --git a/setup.py b/setup.py index 98027f0..d40f240 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import urllib.request from setuptools.command.sdist import sdist -RAVENDB_VERSION = "7.2.5" +RAVENDB_VERSION = "7.2.6" ZIP_FILE_NAME = "server.zip" RAVENDB_DOWNLOAD_URL = f"https://www.nuget.org/api/v2/package/RavenDB.Embedded/{RAVENDB_VERSION}" @@ -46,7 +46,7 @@ def run(self): include_package_data=True, long_description=open("README.md").read(), long_description_content_type="text/markdown", - version="7.2.5.post3", + version="7.2.6", description="RavenDB Embedded library to run RavenDB in an embedded way", author="RavenDB", author_email="support@ravendb.net", @@ -54,7 +54,7 @@ def run(self): license="Custom EULA", keywords="ravendb embedded database nosql doc db", install_requires=[ - "ravendb~=7.2.3", + "ravendb~=7.2.6", "cryptography>=42.0.0", ], license_files=["LICENSE"],