From 27725d600a467c6613edf7cda0cba5458cede5ce Mon Sep 17 00:00:00 2001 From: Francesco de Lorenzi Date: Sun, 5 Jan 2025 10:07:15 +0100 Subject: [PATCH] fix: correct version format in pyproject.toml The version number in was incorrectly prefixed with v.. This has been fixed to follow the correct semantic versioning format as 2.0.1. File: pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ea874c4..1f39938 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fit" -version = "v.2.0.1" +version = "2.0.1" description = "FIT is a Python3 application for forensic acquisition of contents like web pages, emails, social media, etc. directly from the internet." authors = ["Fit Project "] license = "GPL-3.0-only"