Skip to content

Commit

Permalink
0.26.2 version + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Nov 23, 2023
1 parent 12c8ab5 commit 08b99ac
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
Changes
=======

0.26.2 (2023-xx-xx)
0.26.3 (xxxx-xx-xx)
-------------------

- ...


0.26.2 (2023-11-24)
-------------------

- Support for Python 3.12. Python 3.12 has been added to test matrix and trove classifiers.
- Supports ``aiohttp`` 3.9.x versions.
- Updated OpenTelemetry distro to handle MetricReaders and MetricExporters in a more flexible way (similar to how it was changed to be done in ``opentelemetry-sdk`` 1.21.0).
- Log entries from ``tomodachi.logging`` on OTEL instrumented services will now include TraceContext (``span_id``, ``trace_id`` and ``parent_span_id``) on non-recording (but valid) spans.


0.26.1 (2023-10-02)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tomodachi"
version = "0.26.2dev0"
version = "0.26.2"
description = "Microservice library on asyncio - HTTP server, websockets, pub/sub messaging for AWS SNS+SQS and RabbitMQ"
authors = ["Carl Oscar Aaro <[email protected]>"]
keywords = ["tomodachi", "microservice", "microservices", "framework", "library", "asyncio", "aws", "sns", "sqs", "amqp", "rabbitmq", "http", "websockets", "easy", "fast", "pubsub", "events", "event based messaging", "messages", "protocol buffers", "protobuf", "async", "message attributes", "filter policy", "distributed architecture", "scalable", "python 3"]
Expand Down
2 changes: 1 addition & 1 deletion tomodachi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Tuple, Union

__version_info__: Tuple[Union[int, str], ...] = (0, 26, 2, "dev0")
__version_info__: Tuple[Union[int, str], ...] = (0, 26, 2)
__version__: str = "".join([".{}".format(str(n)) if type(n) is int else str(n) for n in __version_info__]).replace(
".", "", 1 if type(__version_info__[0]) is int else 0
)
Expand Down

0 comments on commit 08b99ac

Please sign in to comment.