Skip to content

Commit 62e44b2

Browse files
committed
post-release commit (sets version to 0.28.3dev0)
1 parent 891c9c0 commit 62e44b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: 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.2"
3+
version = "0.28.3dev0"
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"]

Diff for: 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, 28, 2)
3+
__version_info__: Tuple[Union[int, str], ...] = (0, 28, 3, "dev0")
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__ = "2025-02-14T12:46:43.178702Z"
7+
__build_time__ = ""
88

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

0 commit comments

Comments
 (0)