Skip to content
This repository was archived by the owner on Feb 8, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.1.0"
current_version = "0.1.1"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
reference_fmus/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[codz]
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ publish-dryrun: build ## Dry run of publishing the package to PyPI
# TODO: Check if it will run the pytest from the correct venv
test: ## Run tests using pytest
@echo "🚀 Running tests with pytest"
@uv run --frozen pytest --doctest-modules
@uv run --frozen pytest --doctest-modules --cov=mdreader --cov-report=term --cov-report=xml

.PHONY: help
help:
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mdreader"
version = "0.1.0"
version = "0.1.1"
description = "A Python library for reading and parsing Functional Mock-up Interface model description XML file."
readme = "README.md"
authors = [
Expand All @@ -22,8 +22,10 @@ build-backend = "uv_build"
[dependency-groups]
dev = [
"bump-my-version>=1.2.6",
"httpx>=0.28.1",
"pyright>=1.1.407",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]

[tool.pyright]
Expand Down
2 changes: 1 addition & 1 deletion src/mdreader/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"
Empty file added tests/__init__.py
Empty file.
Loading