From 79b2c89a5e2c42ca49282fe2f2a1234372ccdb06 Mon Sep 17 00:00:00 2001 From: pikann Date: Wed, 6 Dec 2023 21:58:25 +0700 Subject: [PATCH] docs: update README.md --- README.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bf8e9a1..288eb3f 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,8 @@ publisher = Publisher( sqs_client=sqs_client, queue_name="sqs-queue-name", ) + +publisher.publish("test message") ``` ### Lazy mode diff --git a/pyproject.toml b/pyproject.toml index 1b444e3..28a1b60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sqs-client" -version = "0.1.0" +version = "0.1.1" authors = [ {name="Digital Fortress", email="hai.huynh@digitalfortress.dev" }, ]