Skip to content

Commit

Permalink
Raises version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danwos committed Aug 16, 2023
1 parent c73c44f commit 228eb60
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
tags:
- '*.*.*'
env:
NEEDS_VERSION: 1.2.2
NEEDS_VERSION: 1.3.0

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@ License

.. include:: ../LICENSE

1.3.0
2.0.0
-----
Released: under development

1.4.0
-----
Released: under development


1.3.0
-----
Released: 16.08.2023

* Improvement: Configuration option :ref:`needs_debug_measurement` added, which creates a runtime report
for debugging purposes.
(`#917 <https://github.com/useblocks/sphinx-needs/pull/917>`_)
Expand Down
15 changes: 13 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
# built documents.
#
# The short X.Y version.
version = "1.2"
version = "1.3"
# The full version, including alpha/beta/rc tags.
release = "1.2.2"
release = "1.3.0"

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

Expand Down Expand Up @@ -301,6 +301,17 @@
"meta": ["<<meta_all(no_links=True)>>", "<<meta_links_all()>>"],
},
},
"detail_view": {
"grid": "simple",
"layout": {
"head": [
'<<meta("type_name")>>: **<<meta("title")>>** <<meta_id()>> <<permalink()>> <<collapse_button("meta", '
'collapsed="icon:arrow-down-circle", visible="icon:arrow-right-circle", initial=False)>> '
'<<sidebar("")>>'
],
"meta": ["<<meta_all(no_links=True)>>", "<<meta_links_all()>>"],
},
},
}

needs_service_all_data = True
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "sphinx-needs"

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

description = "Sphinx needs extension for managing needs/requirements and specifications"
authors = ["team useblocks <[email protected]>"]
Expand Down
1 change: 1 addition & 0 deletions sphinx_needs/directives/need.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ def process_need_nodes(app: Sphinx, doctree: nodes.document, fromdocname: str) -
# We call process_needextend here by our own, so that we are able
# to give print_need_nodes the already found need_nodes.
process_needextend(app, doctree, fromdocname)

print_need_nodes(app, doctree, fromdocname, found_needs_nodes)


Expand Down
2 changes: 1 addition & 1 deletion sphinx_needs/needs.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
from sphinx_needs.utils import INTERNALS, NEEDS_FUNCTIONS, node_match
from sphinx_needs.warnings import process_warnings

VERSION = "1.2.2"
VERSION = "1.3.0"
NEEDS_FUNCTIONS.clear()


Expand Down

1 comment on commit 228eb60

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.50.

Benchmark suite Current: 228eb60 Previous: c73c44f Ratio
Official Sphinx-Needs documentation (without services) 105.15263604400002 s 69.71911147299994 s 1.51

This comment was automatically generated by workflow using github-action-benchmark.

CC: @danwos

Please sign in to comment.