From 69f5d3ab9e70451291a1b8bc1a674b0474b22385 Mon Sep 17 00:00:00 2001 From: Metin Dumandag <29387993+mdumandag@users.noreply.github.com> Date: Mon, 24 Jun 2024 15:15:33 +0300 Subject: [PATCH] Bump version to 0.5.0 Also, allow wider version range of httpx like the other SDKs. --- pyproject.toml | 10 +++++----- upstash_vector/__init__.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 61b4360..7b332c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] @@ -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" @@ -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" diff --git a/upstash_vector/__init__.py b/upstash_vector/__init__.py index e0b290c..a3d0ca2 100644 --- a/upstash_vector/__init__.py +++ b/upstash_vector/__init__.py @@ -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