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..5734084 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rsmetacheck" -version = "0.3.2" +version = "0.3.3" 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