Skip to content

Commit

Permalink
Merge branch 'dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
cwichel committed Mar 28, 2022
2 parents a621b50 + 02f12a3 commit 4509bc7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 15 deletions.
14 changes: 5 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ htmlcov/
.coverage

# Poetry
poetry.lock
poetry.lock

# Project
.[Oo]ut/
Expand Down Expand Up @@ -38,14 +38,10 @@ __pycache__/
*$py.class

# Environments
ENV/
env/
.env
env.bak/
VENV/
venv/
.venv
venv.bak/
[eE][nN][vV]*/
.[eE][nN][vV]*/
[vV][eE][nN][vV]*/
.[vV][eE][nN][vV]*/

# pyenv
.python-version
Expand Down
2 changes: 1 addition & 1 deletion embutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
:license: The MIT License (MIT)
"""
# -------------------------------------
__version__ = '0.8.0'
__version__ = '0.8.1'
8 changes: 4 additions & 4 deletions embutils/utils/parsed.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ class ParseProtocolItem:
"""
Parse protocol item.
"""
#: Parsing method
parse: tp.Callable[[str, ...], dict] = attr.ib()
#: Exporting method
export: tp.Callable[[dict, ...], str] = attr.ib()
#: Parsing method (string to dict...)
parse: tp.Callable[..., dict] = attr.ib()
#: Exporting method (dict to string...)
export: tp.Callable[..., str] = attr.ib()
#: Allowed file suffixes
suffixes: tp.List[str] = attr.ib()

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
version = "0.8.0"
version = "0.8.1"
name = "embutils"
license = "MIT"
readme = "README.md"
Expand Down

0 comments on commit 4509bc7

Please sign in to comment.