From 978a8ae7267fbf97ee03f334071a5e9c64f33e4d Mon Sep 17 00:00:00 2001 From: Anas-Elhounsri Date: Wed, 24 Jun 2026 11:23:53 +0200 Subject: [PATCH 1/2] Preparing for 0.3.3 release --- codemeta.json | 2 +- pyproject.toml | 2 +- src/rsmetacheck/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/codemeta.json b/codemeta.json index 6a7a92b..de2cd8b 100644 --- a/codemeta.json +++ b/codemeta.json @@ -23,7 +23,7 @@ "name": "RsMetaCheck", "operatingSystem": "Linux", "programmingLanguage": "Python", - "version": "0.3.2", + "version": "0.3.3", "developmentStatus": "active", "issueTracker": "https://github.com/SoftwareUnderstanding/RsMetaCheck/issues" } diff --git a/pyproject.toml b/pyproject.toml index 0151a51..3695d22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rsmetacheck" -version = "0.3.2" +version = "{version-file}" description = "Detect metadata pitfalls in software repositories" authors = ["Anas El Hounsri"] readme = "README.md" diff --git a/src/rsmetacheck/__init__.py b/src/rsmetacheck/__init__.py index 7aa2dec..2fdbc66 100644 --- a/src/rsmetacheck/__init__.py +++ b/src/rsmetacheck/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.2" +__version__ = "0.3.3" from .detect_pitfalls_main import main from .cli import cli From 70c4dd95e242559cbdf358169d046356a2e60bd2 Mon Sep 17 00:00:00 2001 From: Anas-Elhounsri Date: Wed, 24 Jun 2026 11:27:44 +0200 Subject: [PATCH 2/2] Updated version in pyproject file --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3695d22..5734084 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rsmetacheck" -version = "{version-file}" +version = "0.3.3" description = "Detect metadata pitfalls in software repositories" authors = ["Anas El Hounsri"] readme = "README.md"