Skip to content

Commit 608fb00

Browse files
Fix version sync for release 0.3.5
1 parent 69ca8be commit 608fb00

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

codemeta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
}
1616
],
1717
"codeRepository": "git+https://github.com/SoftwareUnderstanding/RsMetaCheck.git",
18-
"dateModified": "2026-07-08",
18+
"dateModified": "2026-07-22",
1919
"description": "Automated tool to detect metadata quality pitfalls in software repositories (Python, Java, C++, etc.). Analyzes SoMEF output files for version mismatches, license issues, broken URLs, and more. ",
2020
"downloadUrl": "https://github.com/SoftwareUnderstanding/RsMetaCheck/archive/refs/heads/main.tar.gz",
2121
"keywords": ["codemeta", "pitfalls", "metadata", "analysis"],
2222
"license": "https://spdx.org/licenses/MIT",
2323
"name": "RsMetaCheck",
2424
"operatingSystem": "Linux",
2525
"programmingLanguage": "Python",
26-
"version": "0.3.4",
26+
"version": "0.3.5",
2727
"developmentStatus": "active",
2828
"issueTracker": "https://github.com/SoftwareUnderstanding/RsMetaCheck/issues"
2929
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rsmetacheck"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
description = "Detect metadata pitfalls in software repositories"
55
authors = ["Anas El Hounsri"]
66
readme = "README.md"

src/rsmetacheck/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.3.4"
1+
__version__ = "0.3.5"
22

33
from .detect_pitfalls_main import main
44
from .cli import cli

0 commit comments

Comments
 (0)