Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "valkeylite"
version = "9.0.0"
version = "9.0.1"
description = "Embedded Valkey server for Python - like redislite but with Valkey!"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from setuptools.command.build_py import build_py

# Valkey version to bundle
VALKEY_VERSION = "9.0.0"
VALKEY_VERSION = "9.0.1"


def get_platform_tag():
Expand Down
2 changes: 1 addition & 1 deletion src/valkeylite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
)
from .server import ValkeyServer

__version__ = "9.0.0"
__version__ = "9.0.1"

# Primary exports
__all__ = [
Expand Down