Skip to content

Commit

Permalink
Bump version to 0.5.0
Browse files Browse the repository at this point in the history
Also, allow wider version range of httpx like the other SDKs.
  • Loading branch information
mdumandag committed Jun 24, 2024
1 parent 5e76f4b commit 69f5d3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "upstash-vector"
version = "0.4.0"
version = "0.5.0"
description = "Serverless Vector SDK from Upstash"
license = "MIT"
authors = ["Upstash <[email protected]>"]
Expand Down Expand Up @@ -31,7 +31,7 @@ packages = [{ include = "upstash_vector" }]

[tool.poetry.dependencies]
python = "^3.8"
httpx = ">=0.24.0, <0.28"
httpx = ">=0.23.0, <1"

[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
Expand All @@ -40,11 +40,11 @@ types-pygments = "^2.17.0.20240106"
types-colorama = "^0.4.15.20240106"
types-setuptools = "^69.0.0.20240115"
pytest = "^7.4.4"
pytest-asyncio="^0.20.0"
pytest-asyncio = "^0.20.0"
ruff = "^0.1.13"
numpy = [
{version = "<=1.24.4", python = "<=3.8"},
{version = ">=1.25.0", python = ">=3.9"}
{ version = "<=1.24.4", python = "<=3.8" },
{ version = ">=1.25.0", python = ">=3.9" }
]
pandas = "^2.0.3"
pandas-stubs = "^2.0.3"
Expand Down
2 changes: 1 addition & 1 deletion upstash_vector/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.0"
__version__ = "0.5.0"

from upstash_vector.client import Index, AsyncIndex
from upstash_vector.types import Vector
Expand Down

0 comments on commit 69f5d3a

Please sign in to comment.