Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Jun 5, 2022
1 parent 10d0452 commit 2806109
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Changes
=======

0.36.0
------

The ``session_login``, ``session_logout``, and ``register`` endpoints can now
have their CSS styles easily customised, to make them match the rest of the
application.

.. code-block:: python
from fastapi import FastAPI
from piccolo_api.session_auth.endpoints import register
from piccolo_api.shared.auth.styles import Styles
app = FastAPI()
app.mount(
'/register/',
register(
styles=Styles(background_color='black')
)
)
-------------------------------------------------------------------------------

0.35.0
------

Expand Down
2 changes: 1 addition & 1 deletion piccolo_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "0.35.0"
__VERSION__ = "0.36.0"

0 comments on commit 2806109

Please sign in to comment.