Skip to content

Commit 228eb60

Browse files
committed
Raises version to 1.3.0
1 parent c73c44f commit 228eb60

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
lines changed

.github/workflows/docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
tags:
1414
- '*.*.*'
1515
env:
16-
NEEDS_VERSION: 1.2.2
16+
NEEDS_VERSION: 1.3.0
1717

1818
jobs:
1919
build:

docs/changelog.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,19 @@ License
88

99
.. include:: ../LICENSE
1010

11-
1.3.0
11+
2.0.0
12+
-----
13+
Released: under development
14+
15+
1.4.0
1216
-----
1317
Released: under development
1418

19+
20+
1.3.0
21+
-----
22+
Released: 16.08.2023
23+
1524
* Improvement: Configuration option :ref:`needs_debug_measurement` added, which creates a runtime report
1625
for debugging purposes.
1726
(`#917 <https://github.com/useblocks/sphinx-needs/pull/917>`_)

docs/conf.py

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
# built documents.
4141
#
4242
# The short X.Y version.
43-
version = "1.2"
43+
version = "1.3"
4444
# The full version, including alpha/beta/rc tags.
45-
release = "1.2.2"
45+
release = "1.3.0"
4646

4747
on_rtd = os.environ.get("READTHEDOCS") == "True"
4848

@@ -301,6 +301,17 @@
301301
"meta": ["<<meta_all(no_links=True)>>", "<<meta_links_all()>>"],
302302
},
303303
},
304+
"detail_view": {
305+
"grid": "simple",
306+
"layout": {
307+
"head": [
308+
'<<meta("type_name")>>: **<<meta("title")>>** <<meta_id()>> <<permalink()>> <<collapse_button("meta", '
309+
'collapsed="icon:arrow-down-circle", visible="icon:arrow-right-circle", initial=False)>> '
310+
'<<sidebar("")>>'
311+
],
312+
"meta": ["<<meta_all(no_links=True)>>", "<<meta_links_all()>>"],
313+
},
314+
},
304315
}
305316

306317
needs_service_all_data = True

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "sphinx-needs"
33

44
# !! Don't miss updates in needs.py, conf.py, changelog.rst, and .github/workflows/docker !!!
5-
version = "1.2.2"
5+
version = "1.3.0"
66

77
description = "Sphinx needs extension for managing needs/requirements and specifications"
88
authors = ["team useblocks <[email protected]>"]

sphinx_needs/directives/need.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,7 @@ def process_need_nodes(app: Sphinx, doctree: nodes.document, fromdocname: str) -
394394
# We call process_needextend here by our own, so that we are able
395395
# to give print_need_nodes the already found need_nodes.
396396
process_needextend(app, doctree, fromdocname)
397+
397398
print_need_nodes(app, doctree, fromdocname, found_needs_nodes)
398399

399400

sphinx_needs/needs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
from sphinx_needs.utils import INTERNALS, NEEDS_FUNCTIONS, node_match
106106
from sphinx_needs.warnings import process_warnings
107107

108-
VERSION = "1.2.2"
108+
VERSION = "1.3.0"
109109
NEEDS_FUNCTIONS.clear()
110110

111111

0 commit comments

Comments
 (0)