Skip to content

Commit 4681c82

Browse files
committed
0.28.3
1 parent 2886647 commit 4681c82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tomodachi"
3-
version = "0.28.3dev0"
3+
version = "0.28.3"
44
description = "Microservice library on asyncio - HTTP server, websockets, pub/sub messaging for AWS SNS+SQS and RabbitMQ"
55
authors = ["Carl Oscar Aaro <hello@carloscar.com>"]
66
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"]

tomodachi/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Tuple, Union
22

3-
__version_info__: Tuple[Union[int, str], ...] = (0, 28, 3, "dev0")
3+
__version_info__: Tuple[Union[int, str], ...] = (0, 28, 3)
44
__version__: str = "".join([".{}".format(str(n)) if type(n) is int else str(n) for n in __version_info__]).replace(
55
".", "", 1 if type(__version_info__[0]) is int else 0
66
)

0 commit comments

Comments
 (0)