Skip to content

Commit

Permalink
bump: version 0.9.1 → 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lyz-code committed Dec 8, 2021
1 parent cbe9a72 commit 4572b4b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
## 0.10.0 (2021-12-08)

### Feat

- cli `--config-file` option

## 0.9.1 (2021-11-30)

### Fix
Expand Down
4 changes: 0 additions & 4 deletions mypy.ini
Expand Up @@ -46,7 +46,3 @@ ignore_missing_imports = True

[mypy-virtualenv.*]
ignore_missing_imports = True

# Until https://github.com/dbatten5/maison/issues/52 is fixed
[mypy-maison.*]
ignore_missing_imports = True
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -2,7 +2,7 @@

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.9.1"
version = "0.10.0"
tag_format = "$version"
version_files = [
"src/autoimport/version.py",
Expand Down
3 changes: 3 additions & 0 deletions src/autoimport/model.py
Expand Up @@ -11,6 +11,8 @@
from pyprojroot import here

common_statements: Dict[str, str] = {
"ABC": "from abc import ABC",
"abstractmethod": "from abc import abstractmethod",
"BaseModel": "from pydantic import BaseModel # noqa: E0611",
"BeautifulSoup": "from bs4 import BeautifulSoup",
"call": "from unittest.mock import call",
Expand All @@ -26,6 +28,7 @@
"LogCaptureFixture": "from _pytest.logging import LogCaptureFixture",
"Mock": "from unittest.mock import Mock",
"ModelFactory": "from pydantic_factories import ModelFactory",
"Path": "from pathlib import Path",
"patch": "from unittest.mock import patch",
"StringIO": "from io import StringIO",
"suppress": "from contextlib import suppress",
Expand Down
2 changes: 1 addition & 1 deletion src/autoimport/version.py
Expand Up @@ -3,7 +3,7 @@
import platform
import sys

__version__ = "0.9.1"
__version__ = "0.10.0"


def version_info() -> str:
Expand Down

0 comments on commit 4572b4b

Please sign in to comment.