Skip to content

Commit

Permalink
0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Aug 31, 2023
1 parent 9c4cf06 commit 77f2385
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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.0dev0"
version = "0.26.0"
description = "Microservice library on asyncio - HTTP server, websockets, pub/sub messaging for AWS SNS+SQS and RabbitMQ"
authors = ["Carl Oscar Aaro <hello@carloscar.com>"]
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
4 changes: 2 additions & 2 deletions tomodachi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from typing import Tuple, Union

__version_info__: Tuple[Union[int, str], ...] = (0, 26, 0, "dev0")
__version_info__: Tuple[Union[int, str], ...] = (0, 26, 0)
__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__ = "2023-08-31T22:26:57.145107Z"

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

0 comments on commit 77f2385

Please # to comment.