Skip to content

Commit

Permalink
Merge pull request #184 from Yelp/add-back-exports-encoding
Browse files Browse the repository at this point in the history
Add back exports in py_zipkin.encoding
  • Loading branch information
dmfallak authored Mar 23, 2023
2 parents e4ebfc8 + 54de3b6 commit b6c32f3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.2.8 (2023-03-23)
-------------------
- Add back exports in py_zipkin.encoding
- Fix mypy tests

1.2.7 (2023-02-06)
-------------------
- Drop support for Python 3.6
Expand Down
5 changes: 5 additions & 0 deletions py_zipkin/encoding/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
from typing import Optional
from typing import Union

from py_zipkin.encoding._decoders import get_decoder # noqa: F401
from py_zipkin.encoding._encoders import get_encoder # noqa: F401
from py_zipkin.encoding._helpers import create_endpoint # noqa: F401
from py_zipkin.encoding._helpers import Endpoint # noqa: F401
from py_zipkin.encoding._helpers import Span # noqa: F401
from py_zipkin.encoding._types import Encoding
from py_zipkin.exception import ZipkinError

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages
from setuptools import setup

__version__ = '1.2.7'
__version__ = '1.2.8'


def read(f):
Expand Down

0 comments on commit b6c32f3

Please sign in to comment.