We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76fce14 commit 87c48d8Copy full SHA for 87c48d8
2 files changed
docs/_static/custom.js
@@ -12,7 +12,7 @@
12
}
13
14
let hash = window.location.hash.substring(1);
15
- if (hash) {
16
- window.location.replace(anchorMap[hash]);
+ if (hash && hash in anchorMap) {
+ window.location.replace(anchorMap[hash]);
17
18
})();
docs/release.rst
@@ -15,6 +15,20 @@ Release notes
# .. warning::
# Pre-release! Use :command:`pip install --pre zarr` to evaluate this release.
+.. _release_2.14.1:
19
+
20
+2.14.1
21
+------
22
23
+Documentation
24
+~~~~~~~~~~~~~
25
26
+* Fix API links.
27
+ By :user:`Josh Moore <joshmoore>` :issue:`1346`.
28
29
+* Fix unit tests which prevented the conda-forge release.
30
+ By :user:`Josh Moore <joshmoore>` :issue:`1348`.
31
32
.. _release_2.14.0:
33
34
2.14.0
0 commit comments