From 1b3181ba4bc6ee3fef3d0cc3d816c96afcf53f15 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Sun, 14 Jan 2024 23:19:41 +0100 Subject: [PATCH] 0.26.4 --- pyproject.toml | 2 +- tomodachi/__version__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d7af86c6..8b27b085 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomodachi" -version = "0.26.4dev0" +version = "0.26.4" description = "Microservice library on asyncio - HTTP server, websockets, pub/sub messaging for AWS SNS+SQS and RabbitMQ" authors = ["Carl Oscar Aaro "] 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"] diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index a011f463..0e103d7f 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,10 +1,10 @@ from typing import Tuple, Union -__version_info__: Tuple[Union[int, str], ...] = (0, 26, 4, "dev0") +__version_info__: Tuple[Union[int, str], ...] = (0, 26, 4) __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 ) -__build_time__ = "" +__build_time__ = "2024-01-14T22:19:04.067012Z" if __name__ == "__main__": print(__version__)