We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5135ff2 commit 4b415f7Copy full SHA for 4b415f7
2 files changed
CHANGELOG.md
@@ -0,0 +1,12 @@
1
+# Changelog
2
+
3
+## v0.5.0 - 2020-10-15
4
5
+✨ NEW: Add `tabbed` directive, to create tab groups!
6
+See [this documentation section](https://sphinx-panels.readthedocs.io/en/latest/#tabbed-content).
7
8
+♻️ REFACTOR: Move from CSS to SCSS:
9
+Under the hood, sphinx-panels now utilises CSS compiled from source SCSS,
10
+allowing for a better development environment.
11
+The CSS files are also "hashed", to ensure that documentation using sphinx-panels will not show
12
+old, cached CSS stylings after future updates to sphinx-panels.
sphinx_panels/__init__.py
@@ -23,7 +23,7 @@
23
from ._css import panels as css_panels
24
from ._css import bootstrap as css_bootstrap
25
26
-__version__ = "0.4.1"
+__version__ = "0.5.0"
27
28
LOGGER = getLogger(__name__)
29
0 commit comments