Skip to content

Commit 0cbfdca

Browse files
committed
Update changelog.
Bump version to v0.9.4.post1 for release
1 parent ebe7b2e commit 0cbfdca

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
Sanic Plugins Framework
22
=======================
33

4+
0.9.4.post1
5+
-----------
6+
- Add ``setuptools`` as a specific requirement to this project.
7+
8+
- It is needed for the entrypoints-based plugin auto-discovery feature
9+
- ``setuptools`` is not always included in a python distribution, so we cannot assume it will be there
10+
- Pinned to ``>40.0`` for now, but will likely change when we migrate to a Poetry/PEP517-based project
11+
12+
413
0.9.4
514
-----------
615
- If the Sanic server emits a "before_server_start" event, use this to initialize SPF, instead of the
716
"after_server_start" event.
817

918
- This solves a potential race-condition introduced in SPF v0.8.2, when this was reversed.
10-
- Changed the RuntimeError thrown in that cirumstance to a Sanic ``ServerError``
19+
- Changed the RuntimeError thrown in that circumstance to a Sanic ``ServerError``
1120

1221
- This may make the error easier to catch and filter. Also may change what the end-user sees when this occurs.
1322

spf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from .framework import SanicPluginsFramework
44
from .plugin import SanicPlugin
55

6-
__version__ = '0.9.4'
6+
__version__ = '0.9.4.post1'
77
__all__ = ["SanicPlugin", "SanicPluginsFramework", "__version__"]

0 commit comments

Comments
 (0)