Skip to content

Commit a1bd256

Browse files
bump dev version + update version_match
1 parent 73b9fd9 commit a1bd256

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

docs/_static/switcher.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
{
3-
"name": "0.9.0 (dev)",
3+
"name": "dev",
44
"version": "latest"
55
},
66
{

docs/conf.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,11 @@
8080
html_theme = "pydata_sphinx_theme"
8181
# html_logo = "_static/pandas.svg" # For testing
8282

83+
if "dev" in release:
84+
version_match = "dev"
85+
else:
86+
version_match = "v" + release
87+
8388
html_theme_options = {
8489
"external_links": [
8590
{
@@ -117,7 +122,7 @@
117122
# "json_url": "/_static/switcher.json",
118123
"json_url": "https://pydata-sphinx-theme.readthedocs.io/en/latest/_static/switcher.json",
119124
"url_template": "https://pydata-sphinx-theme.readthedocs.io/en/{version}/",
120-
"version_match": "v" + version,
125+
"version_match": version_match,
121126
},
122127
}
123128

src/pydata_sphinx_theme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from .bootstrap_html_translator import BootstrapHTML5Translator
1515

16-
__version__ = "0.8.0"
16+
__version__ = "0.9.0.dev0"
1717

1818
logger = logging.getLogger(__name__)
1919

0 commit comments

Comments
 (0)