From b30179be5bb311daeffa9a8270a3bb17e9c37123 Mon Sep 17 00:00:00 2001 From: Alberto Cetoli Date: Mon, 27 May 2024 14:58:54 +0100 Subject: [PATCH] changed variables for version --- README.md | 2 +- documentation/source/index.rst | 2 +- wafl/variables.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8b95a194..fcf025a2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# WAFL 0.0.80 [![Tests](https://github.com/fractalego/wafl/actions/workflows/development-tests1.yml/badge.svg)](https://github.com/fractalego/wafl/actions/workflows/development-tests1.yml)[![Docs](https://readthedocs.org/projects/wafl/badge/?version=latest)](https://wafl.readthedocs.io/en/latest/) +# WAFL 0.0.90 [![Tests](https://github.com/fractalego/wafl/actions/workflows/development-tests1.yml/badge.svg)](https://github.com/fractalego/wafl/actions/workflows/development-tests1.yml)[![Docs](https://readthedocs.org/projects/wafl/badge/?version=latest)](https://wafl.readthedocs.io/en/latest/) Introduction ============ diff --git a/documentation/source/index.rst b/documentation/source/index.rst index 9f32cc73..30c4f872 100644 --- a/documentation/source/index.rst +++ b/documentation/source/index.rst @@ -3,7 +3,7 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -Welcome to WAFL's 0.0.80 documentation! +Welcome to WAFL's 0.0.90 documentation! ======================================= .. toctree:: diff --git a/wafl/variables.py b/wafl/variables.py index 0eee6ad9..27f3aa5c 100644 --- a/wafl/variables.py +++ b/wafl/variables.py @@ -1,9 +1,9 @@ def get_variables(): return { - "version": "0.0.84", + "version": "0.0.90", } def is_supported(wafl_llm_version): - supported_versions = ["0.0.82", "0.0.83"] + supported_versions = ["0.0.90"] return wafl_llm_version in supported_versions