Skip to content

Commit

Permalink
Bump redis-index version to 0.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
erhosen committed Dec 30, 2023
1 parent 2b63c1e commit ff6868d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "redis-index"
version = "0.7.0"
version = "0.8.0"
description = "Inverted Index using efficient Redis set"
authors = ["Vladimir Vyazovetskov <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion redis_index/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from redis_index.redis_index import BaseFilter, RedisFiltering, RedisIndex

__version__ = "0.7.0"
__version__ = "0.8.0"

__all__ = ("BaseFilter", "RedisFiltering", "RedisIndex")
2 changes: 1 addition & 1 deletion tests/test_redis_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ def test_warm_filters(redis_connection, statsd_client, db_ids):


def test_version():
assert __version__ == "0.7.0"
assert __version__ == "0.8.0"

0 comments on commit ff6868d

Please sign in to comment.