just-the-docs 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/_includes/components/breadcrumbs.html +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22a6a0d3f3fd03d3844e9c5eb64e40cc773eb262d0510602a788251969a1cabc
|
4
|
+
data.tar.gz: 61a7948dfe5194edd3fa9d687627609bd09d7f60d53b537cd8a3648cc3f6b010
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bd3dfc0ed486b513da4dda7ed173afd9c88f0e0d91613ee461a6bd5d4fba2fca0fe2629c62d352eaf939ddfaebbf1e25e25143ce25984ac4b924f4822bd21aa
|
7
|
+
data.tar.gz: 2b91896bdb283283afd9144463962e9f21128f212e92b70755fe2c718d58e4711fd6a3be102f4df9cab73d0c8b1ab3b709c0fbbcd784fd74ee548396299ebfcd
|
data/CHANGELOG.md
CHANGED
@@ -23,6 +23,27 @@ Docs changes made since the latest release:
|
|
23
23
|
|
24
24
|
- N/A
|
25
25
|
|
26
|
+
## Release v0.8.1
|
27
|
+
|
28
|
+
Hi folks! This patch release fixes a bug introduced in `0.8.0` that affects users who build their sites in strict mode. It is a straightforward upgrade that should require no manual migration changes. Thank you to [@Zarthus] for quickly catching and fixing this bug!
|
29
|
+
|
30
|
+
### Bugfixes
|
31
|
+
|
32
|
+
- Fixed: Liquid filter typo in breadcrumb component (`strip` instead of `trim`) by [@Zarthus] in [#1434]
|
33
|
+
|
34
|
+
### Documentation
|
35
|
+
|
36
|
+
- Build docs site using strict mode and `strict_filters` by [@Zarthus] in [#1435]
|
37
|
+
|
38
|
+
### New Contributors
|
39
|
+
|
40
|
+
- [@Zarthus] made their first contribution in [#1434]
|
41
|
+
|
42
|
+
[@Zarthus]: https://github.com/Zarthus
|
43
|
+
|
44
|
+
[#1434]: https://github.com/just-the-docs/just-the-docs/pull/1434
|
45
|
+
[#1435]: https://github.com/just-the-docs/just-the-docs/pull/1435
|
46
|
+
|
26
47
|
## Release v0.8.0
|
27
48
|
|
28
49
|
Hi folks! This first minor release of 2024 has a short number of changes: a large improvement of build times for large sites, a new keyboard shortcut to focus the search bar, and sidebar navigation bugfixes for "pretty" URLs (with `.html` omitted) and the clickable area on Safari. This release has no explicit breaking changes and should be a straightforward upgrade for most (if not all) users.
|
@@ -56,7 +56,7 @@
|
|
56
56
|
{%- for nav_split in nav_anchor_splits -%}
|
57
57
|
{%- unless forloop.last -%}
|
58
58
|
|
59
|
-
{%- assign nav_split_next = nav_anchor_splits[forloop.index] |
|
59
|
+
{%- assign nav_split_next = nav_anchor_splits[forloop.index] | strip -%}
|
60
60
|
|
61
61
|
{%- assign nav_split_test =
|
62
62
|
nav_split_next | remove_first: nav_list_simple | prepend: nav_list_simple -%}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: just-the-docs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick Marsceill
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-03-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|