From 94975c2f09f6d650127bdf16411e9321be3895ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Clavi=C3=A9?= Date: Sat, 17 Aug 2024 23:29:04 +0200 Subject: [PATCH] version bump for fix --- pyproject.toml | 2 +- ragatouille/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c75ea31..04aaa42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "RAGatouille" -version = "0.0.8post2" +version = "0.0.8post3" description = "Library to facilitate the use of state-of-the-art retrieval models in common RAG contexts." authors = ["Benjamin Clavie "] license = "Apache-2.0" diff --git a/ragatouille/__init__.py b/ragatouille/__init__.py index c79a775..f60a46d 100644 --- a/ragatouille/__init__.py +++ b/ragatouille/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.8post2" +__version__ = "0.0.8post3" from .RAGPretrainedModel import RAGPretrainedModel from .RAGTrainer import RAGTrainer