Skip to content

Commit 875a011

Browse files
DEV - Go back to dev - post-release (#2019)
Now that `v0.16.0` is out, we can return to a dev version. Included in this PR: - **:bookmark: Go back to dev - post-release** - **Update release instructions to check for i18n docs** -> since I noticed while doing this release that some files were out of sync. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent fad3647 commit 875a011

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ These steps should be taken in order to create a new release![^release-refs]
1010
**Double check for quality-control**
1111

1212
- [ ] There are no [open issues with a `impact: block-release` label](https://github.com/pydata/pydata-sphinx-theme/labels/impact%3A%20block-release)
13+
- [ ] Check wether the localization files are up-to-date, or [open a PR to update them if needed](https://pydata-sphinx-theme.readthedocs.io/en/stable/community/topics/i18n.html#compiling-the-localization-files).
1314

1415
**Prepare the codebase for a new version**
1516

docs/_static/switcher.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
"version": "v0.11.0",
3535
"url": "https://pydata-sphinx-theme.readthedocs.io/en/v0.11.0/"
3636
}
37-
]
37+
]

src/pydata_sphinx_theme/__init__.py

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

1515
from . import edit_this_page, logo, pygments, short_link, toctree, translator, utils
1616

17-
__version__ = "0.16.0"
17+
__version__ = "0.16.1dev0"
1818

1919

2020
def update_config(app):

src/pydata_sphinx_theme/assets/scripts/pydata-sphinx-theme.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ var setupSearchButtons = () => {
347347
var getCurrentUrlPath = () => {
348348
if (DOCUMENTATION_OPTIONS.BUILDER == "dirhtml") {
349349
return DOCUMENTATION_OPTIONS.pagename.endsWith("index")
350-
? `${DOCUMENTATION_OPTIONS.pagename.substring(0, DOCUMENTATION_OPTIONS.pagename.length - 'index'.length)}`
350+
? `${DOCUMENTATION_OPTIONS.pagename.substring(0, DOCUMENTATION_OPTIONS.pagename.length - "index".length)}`
351351
: `${DOCUMENTATION_OPTIONS.pagename}/`;
352352
}
353353
return `${DOCUMENTATION_OPTIONS.pagename}.html`;

0 commit comments

Comments
 (0)