From 2832ccb6c06e1ed7faeaa1476ab5214d59ee9c6a Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 16 Sep 2022 12:35:48 +0700 Subject: [PATCH] added version in init file --- async_sendgrid/__init__.py | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/async_sendgrid/__init__.py b/async_sendgrid/__init__.py index 29d4343..fff70f9 100644 --- a/async_sendgrid/__init__.py +++ b/async_sendgrid/__init__.py @@ -1 +1,3 @@ from .sendgrid import AsyncClient + +__version__ = "0.0.3" diff --git a/pyproject.toml b/pyproject.toml index 85a2382..2fb5bb1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "async-sendgrid" -version = "0.0.2" +version = "0.0.3" description = "SendGrid simple async client based on httpx." license = "MIT" authors = ["Saltymakov Timofey "]