Skip to content

Commit 6203be1

Browse files
committed
chore: Preparing for a release
1 parent aa72e54 commit 6203be1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "linear-cli"
7-
version = "1.0.0"
7+
version = "1.0.4"
88
authors = [
99
{name = "Linearator Team", email = "[email protected]"},
1010
]
@@ -223,4 +223,4 @@ exclude_lines = [
223223
"if __name__ == .__main__.:",
224224
"class .*\\bProtocol\\):",
225225
"@(abc\\.)?abstractmethod",
226-
]
226+
]

src/linear_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
including issue management, team operations, and advanced search capabilities.
66
"""
77

8-
__version__ = "1.0.0"
8+
__version__ = "1.0.4"
99
__author__ = "Linearator Team"
1010
__email__ = "[email protected]"
1111

tests/unit/test_cli_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_cli_version(self):
2222
"""Test CLI version output."""
2323
result = self.runner.invoke(main, ["--version"])
2424
assert result.exit_code == 0
25-
assert "1.0.0" in result.output
25+
assert "1.0.4" in result.output
2626

2727
def test_issue_group_help(self):
2828
"""Test issue group help."""

0 commit comments

Comments
 (0)