Skip to content
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
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[v1.0.3] Unreleased
[v1.0.3]
-------------------

- Migrate to ``httpx2``.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "markdown-checker"
description= "A markdown link validation reporting tool."
version = "1.0.2"
version = "1.0.3"
authors = [{ name = "John Aziz", email = "johnaziz269@gmail.com" }]
maintainers = [{ name = "John Aziz", email = "johnaziz269@gmail.com" }]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/markdown_checker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
markdown-checker — a markdown link validation reporting tool.
"""

__version__ = "1.0.2"
__version__ = "1.0.3"

from markdown_checker.cli import main
from markdown_checker.models import Config
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def test_cli_version(runner):
"""Displays version information."""
result = runner.invoke(main, ["--version"])
assert result.exit_code == 0
assert "1.0.2" in result.output
assert "1.0.3" in result.output


def test_cli_ci_mode(runner, resources_dir, monkeypatch, tmp_path):
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading