Skip to content

Commit 6228a73

Browse files
rolfedhclaude
andcommitted
chore: Bump version to 0.1.7
- Fix typer[all] installation conflict issue - Handle journey workflow when no violations exist - Add troubleshooting documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ca98186 commit 6228a73

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "aditi"
7-
version = "0.1.6"
7+
version = "0.1.7"
88
description = "A CLI tool to prepare AsciiDoc files for migration to DITA"
99
readme = "README.md"
1010
requires-python = ">=3.11"

src/aditi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
and fixing compatibility issues using Vale with AsciiDocDITA rules.
55
"""
66

7-
__version__ = "0.1.6"
7+
__version__ = "0.1.7"
88
__author__ = "Your Name"
99
__email__ = "your.email@example.com"
1010
__license__ = "MIT"

tests/integration/test_cli_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_version_command(self, runner):
3232
"""Test version output."""
3333
result = runner.invoke(app, ["--version"])
3434
assert result.exit_code == 0
35-
assert "aditi version 0.1.6" in result.stdout
35+
assert "aditi version 0.1.7" in result.stdout
3636

3737
@patch("aditi.cli.init_command")
3838
def test_init_command(self, mock_init, runner):

0 commit comments

Comments
 (0)