Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pymc_core"
version = "1.0.9"
version = "1.0.10"
authors = [
{name = "Lloyd Newton", email = "lloyd@rightup.co.uk"},
]
Expand Down
2 changes: 1 addition & 1 deletion src/pymc_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Clean, simple API for building mesh network applications.
"""

__version__ = "1.0.9"
__version__ = "1.0.10"

# Core mesh functionality
from .node.node import MeshNode
Expand Down
2 changes: 2 additions & 0 deletions src/pymc_core/node/handlers/ack.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import asyncio
from typing import Awaitable, Callable, Optional

Expand Down
2 changes: 2 additions & 0 deletions src/pymc_core/node/handlers/group_text.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from typing import Optional

from ...protocol import Packet
Expand Down
2 changes: 1 addition & 1 deletion tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def test_version():
assert __version__ == "1.0.9"
assert __version__ == "1.0.10"


def test_import():
Expand Down
Loading