From 8d9af072ba79fa855f0b1949829d350f35db4b6e Mon Sep 17 00:00:00 2001 From: syedzaidi-kiwi Date: Wed, 17 Jul 2024 00:41:36 +0530 Subject: [PATCH] version bumped to 0.2.0 --- colrag/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/colrag/__init__.py b/colrag/__init__.py index d17a028..a11efa0 100644 --- a/colrag/__init__.py +++ b/colrag/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.9" # Update this to your current version +__version__ = "0.2.0" # Update this to your current version from .indexer import index_documents, read_file, process_file from .retriever import load_model_from_index, retrieve_and_rerank_documents, retrieve_and_rerank_multiple_documents diff --git a/pyproject.toml b/pyproject.toml index 5bef4c6..4d13222 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "colrag" -version = "0.1.9" +version = "0.2.0" description = "A RAG pipeline using ColBERT via RAGatouille" authors = ["Syed Asad "] license = "MIT"