Skip to content

Commit 19e5eb7

Browse files
fix: version bumps
1 parent 70ff6ad commit 19e5eb7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ python_classes = ["Test*"]
6767
python_functions = ["test_*"]
6868

6969
[tool.mypy]
70-
python_version = "1.0.0"
70+
python_version = "3.10"
7171
strict = true
7272
warn_return_any = true
7373
warn_unused_configs = true
7474

7575
[tool.ruff]
76-
target-version = "1.0.0"
76+
target-version = "py310"
7777
line-length = 100
7878

7979
[tool.ruff.lint]

src/archunitpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""ArchUnitPython - Architecture testing library for Python projects."""
22

3-
__version__ = "0.1.0"
3+
__version__ = "1.0.0"
44

55
# Files API
66
# Common

tests/integration/test_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def test_import_format_violations(self):
5454
def test_version(self):
5555
import archunitpython
5656

57-
assert archunitpython.__version__ == "0.1.0"
57+
assert archunitpython.__version__ == "1.0.0"
5858

5959

6060
class TestAssertPasses:

tests/test_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
def test_import():
55
import archunitpython
66

7-
assert archunitpython.__version__ == "0.1.0"
7+
assert archunitpython.__version__ == "1.0.0"

0 commit comments

Comments
 (0)