Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Aug 27, 2022
1 parent 82f42cf commit 9f62a42
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions docs/src/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Changes
=======

0.12.0
------

You can now specify the source code URL, and it will show in the nav bar.

.. code-block:: python
# conf.py
html_theme_options = {
"source_url": 'https://github.com/piccolo-orm/piccolo_theme/'
}
The icon is inferred automatically based on the URL (in the above example, we
show the GitHub logo). You explicitly set the icon if you prefer:

.. code-block:: python
# conf.py
html_theme_options = {
"source_url": 'https://self-hosted.foo.com/',
"source_icon": "gitlab"
}
-------------------------------------------------------------------------------

0.11.1
------

Expand Down
2 changes: 1 addition & 1 deletion piccolo_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from sphinx.application import Sphinx


__VERSION__ = "0.11.1"
__VERSION__ = "0.12.0"


def setup(app: 'Sphinx'):
Expand Down

0 comments on commit 9f62a42

Please sign in to comment.