Skip to content

Commit bd82a1a

Browse files
author
Brian Kohan
committed
fix test order
1 parent 557180e commit bd82a1a

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

django_typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
from typing import ParamSpec
141141

142142

143-
VERSION = (1, 2, 0)
143+
VERSION = (2, 0, 0)
144144

145145
__title__ = "Django Typer"
146146
__version__ = ".".join(str(i) for i in VERSION)

django_typer/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def pytest_collection_modifyitems(items):
66
adapter_tests = [] # push these to the back
77

88
for test in items:
9-
if "adapt" in test.module.__name__:
9+
if "plugin" in test.module.__name__:
1010
adapter_tests.append(test)
1111
elif "test_interference" in test.module.__name__:
1212
interference_tests.append(test)

doc/source/changelog.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
Change Log
33
==========
44

5-
v1.2.0
5+
v2.0.0
66
======
77

8+
This major version release, includes an extensive internal refactor, numerous bug fixes and the
9+
addition of a plugin-based extension pattern.
10+
811
* Fixed `Overriding handle() in inherited commands results in multiple commands. <https://github.com/bckohan/django-typer/issues/74>`_
912
* Implemented `Support subgroup name overloads. <https://github.com/bckohan/django-typer/issues/70>`_
1013
* Fixed `Helps from class docstrings and TyperCommand class parameters are not inherited. <https://github.com/bckohan/django-typer/issues/69>`_

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-typer"
3-
version = "1.2.0"
3+
version = "2.0.0"
44
description = "Use Typer to define the CLI for your Django management commands."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)