From 2e56f813c8a9e5ad15d878421d9f3059224b492c Mon Sep 17 00:00:00 2001 From: Davor Runje Date: Sat, 2 Dec 2023 18:29:26 +0800 Subject: [PATCH] Release 0.3.0 (#1011) * new release 0.3.0 * Include api docs for EmailStr --------- Co-authored-by: Kumaran Rajendhiran --- .secrets.baseline | 4 ++-- docs/includes/en/no_ack.md | 4 ++-- faststream/__about__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.secrets.baseline b/.secrets.baseline index 5963a492ae..347b6bbe49 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -158,10 +158,10 @@ "filename": "faststream/rabbit/broker.py", "hashed_secret": "35675e68f4b5af7b995d9205ad0fc43842f16450", "is_verified": false, - "line_number": 58, + "line_number": 68, "is_secret": false } ] }, - "generated_at": "2023-12-01T10:30:49Z" + "generated_at": "2023-12-02T10:12:03Z" } diff --git a/docs/includes/en/no_ack.md b/docs/includes/en/no_ack.md index aa32de2e19..ce64b2ac8f 100644 --- a/docs/includes/en/no_ack.md +++ b/docs/includes/en/no_ack.md @@ -1,3 +1,3 @@ !!! tip - If you want to disable **FastStream** Acknowledgement logic at all, you can use - `#!python @broker.subscriber(..., no_ack=True)` option. This way you should always process a message (ack/nack/terminate/etc) by yourself. \ No newline at end of file + If you want to disable **FastStream** Acknowledgement logic at all, you can use + `#!python @broker.subscriber(..., no_ack=True)` option. This way you should always process a message (ack/nack/terminate/etc) by yourself. diff --git a/faststream/__about__.py b/faststream/__about__.py index 40be3bb7bd..a7315b8a46 100644 --- a/faststream/__about__.py +++ b/faststream/__about__.py @@ -1,5 +1,5 @@ """Simple and fast framework to create message brokers based microservices""" -__version__ = "0.3.0rc0" +__version__ = "0.3.0" INSTALL_YAML = """