Skip to content

Commit 1b3181b

Browse files
committed
0.26.4
1 parent cd309c7 commit 1b3181b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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.26.4dev0"
3+
version = "0.26.4"
44
description = "Microservice library on asyncio - HTTP server, websockets, pub/sub messaging for AWS SNS+SQS and RabbitMQ"
55
authors = ["Carl Oscar Aaro <[email protected]>"]
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

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

3-
__version_info__: Tuple[Union[int, str], ...] = (0, 26, 4, "dev0")
3+
__version_info__: Tuple[Union[int, str], ...] = (0, 26, 4)
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
)
7-
__build_time__ = ""
7+
__build_time__ = "2024-01-14T22:19:04.067012Z"
88

99
if __name__ == "__main__":
1010
print(__version__)

0 commit comments

Comments
 (0)