Skip to content

Commit bac1803

Browse files
committed
Prepare 0.6.0 release
1 parent 7bbf9ac commit bac1803

File tree

8 files changed

+9
-12
lines changed

8 files changed

+9
-12
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Here you can see the full list of changes between each Nightfall release.
66
Version 0.6.0
77
-------------
88

9-
UNRELEASED
9+
Released on July 25, 2021
1010

1111
- Update scan and chunking interface to handle dict with multiple items
1212
instead of list of dicts.

dev-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
docutils==0.16
12
pylint
23
doc8
34
coverage

docs/_static/basic.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ div.code-block-caption code {
819819

820820
table.highlighttable td.linenos,
821821
span.linenos,
822-
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
822+
div.highlight span.gp { /* gp: Generic.Prompt */
823823
user-select: none;
824824
-webkit-user-select: text; /* Safari fallback only */
825825
-webkit-user-select: none; /* Chrome/Safari */

docs/_static/doctools.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,12 +301,14 @@ var Documentation = {
301301
window.location.href = prevHref;
302302
return false;
303303
}
304+
break;
304305
case 39: // right
305306
var nextHref = $('link[rel="next"]').prop('href');
306307
if (nextHref) {
307308
window.location.href = nextHref;
308309
return false;
309310
}
311+
break;
310312
}
311313
}
312314
});

docs/_static/searchtools.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ var Search = {
276276
setTimeout(function() {
277277
displayNextItem();
278278
}, 5);
279-
} else if (DOCUMENTATION_OPTIONS.HAS_SOURCE) {
279+
} else {
280280
$.ajax({url: requestUrl,
281281
dataType: "text",
282282
complete: function(jqxhr, textstatus) {
@@ -289,12 +289,6 @@ var Search = {
289289
displayNextItem();
290290
}, 5);
291291
}});
292-
} else {
293-
// no source available, just display title
294-
Search.output.append(listItem);
295-
setTimeout(function() {
296-
displayNextItem();
297-
}, 5);
298292
}
299293
}
300294
// search finished, update title and status message

docs/changelog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this he
173173
<p>Here you can see the full list of changes between each Nightfall release.</p>
174174
<div class="section" id="version-0-6-0">
175175
<h2>Version 0.6.0<a class="headerlink" href="#version-0-6-0" title="Permalink to this headline"></a></h2>
176-
<p>UNRELEASED</p>
176+
<p>Released on July 25, 2021</p>
177177
<ul class="simple">
178178
<li><p>Update scan and chunking interface to handle dict with multiple items
179179
instead of list of dicts.</p></li>

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docsrc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2929
# ones.
3030
extensions = [
31-
'sphinx.ext.autodoc'
31+
'sphinx.ext.autodoc', 'sphinx_rtd_theme'
3232
]
3333

3434
# Add any paths that contain templates here, relative to this directory.

0 commit comments

Comments
 (0)