diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e2f322d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## v0.5.0 - 2020-10-15 + +✨ NEW: Add `tabbed` directive, to create tab groups! +See [this documentation section](https://sphinx-panels.readthedocs.io/en/latest/#tabbed-content). + +♻️ REFACTOR: Move from CSS to SCSS: +Under the hood, sphinx-panels now utilises CSS compiled from source SCSS, +allowing for a better development environment. +The CSS files are also "hashed", to ensure that documentation using sphinx-panels will not show +old, cached CSS stylings after future updates to sphinx-panels. diff --git a/sphinx_panels/__init__.py b/sphinx_panels/__init__.py index 89d2446..1903f4b 100644 --- a/sphinx_panels/__init__.py +++ b/sphinx_panels/__init__.py @@ -23,7 +23,7 @@ from ._css import panels as css_panels from ._css import bootstrap as css_bootstrap -__version__ = "0.4.1" +__version__ = "0.5.0" LOGGER = getLogger(__name__)