From a734a4ba0f46ea3abdfbc27abd98769fbe6f261e Mon Sep 17 00:00:00 2001 From: Sami Jaghouar Date: Wed, 18 Jan 2023 12:22:44 +0100 Subject: [PATCH] chore: bump version Signed-off-by: Sami Jaghouar --- README.md | 2 +- docarray/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 568b96649de..5c327961697 100644 --- a/README.md +++ b/README.md @@ -403,7 +403,7 @@ match = store.find(Image(embedding=np.zeros((128,))), field='text__embedding', t to try out the alpha you can install it via git: ```shell -pip install "git+https://github.com/docarray/docarray@2023.01.17.alpha#egg=docarray[common,torch,image]" +pip install "git+https://github.com/docarray/docarray@2023.01.18.alpha#egg=docarray[common,torch,image]" ``` or from the latest development branch ```shell diff --git a/docarray/__init__.py b/docarray/__init__.py index 5c5b33c76b3..bfc0842a846 100644 --- a/docarray/__init__.py +++ b/docarray/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2023.01.17.alpha' +__version__ = '2023.01.18.alpha' from docarray.array.array import DocumentArray from docarray.base_document.document import BaseDocument diff --git a/pyproject.toml b/pyproject.toml index 23c52c9c337..2d60663ce26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "docarray" -version = '2023.01.17.alpha' +version = '2023.01.18.alpha' description='The data structure for unstructured data' authors=['DocArray'] license='Apache 2.0'