diff --git a/CHANGES.md b/CHANGES.md index 9fba8d6..a4adb29 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## Version 0.5.0 + +Released 2025-01-09 + +- chore: change the log level. ([#21](https://github.com/overcat/requests-sse/pull/21)) +- feat: allow users to set `latest_event_id` during initialization. ([#24](https://github.com/overcat/requests-sse/pull/24)) + ## Version 0.4.0 Released 2025-01-07 diff --git a/pyproject.toml b/pyproject.toml index ee00f73..0962cc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "requests-sse" -version = "0.4.0" +version = "0.5.0" description = "server-sent events python client library based on requests" authors = ["overcat <4catcode@gmail.com>"] maintainers = ["overcat <4catcode@gmail.com>"] diff --git a/requests_sse/__init__.py b/requests_sse/__init__.py index fe88667..1acfeeb 100644 --- a/requests_sse/__init__.py +++ b/requests_sse/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.4.0" +__version__ = "0.5.0" from .client import *