Skip to content

Commit

Permalink
Ver 1.0.3 prep (#787)
Browse files Browse the repository at this point in the history
* Preparation for release 1.0.3

* Updates poetry.lock

* Adds "py" dep for pytest-benchmarking

* Fixed lsp tests due to latest esbonio version

* Imporved lsp tests logic

* Improved lsp tests with elif

Co-authored-by: haiyangToAI <[email protected]>
  • Loading branch information
danwos and haiyangToAI authored Nov 9, 2022
1 parent e5a38ed commit 19b2516
Show file tree
Hide file tree
Showing 12 changed files with 501 additions and 320 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.0.2
NEEDS_VERSION: 1.0.3

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

.. include:: ../LICENSE

1.0.3
1.0.4
-----
Under development

1.0.3
-----
Released: 08.11.2022


* Improvement: Fixed :ref:`needextend` error handling by adding a strict-mode option to it.
(`#747 <https://github.com/useblocks/sphinx-needs/issues/747>`_)
* Improvement: Fixed issue with handling needs-variants by default.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
# The short X.Y version.
version = "1.0"
# The full version, including alpha/beta/rc tags.
release = "1.0.2"
release = "1.0.3"

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

Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
# Some pytest-extension do not work well with pytest-benchmark, so we create our
# own list for benchmarking
BENCHMARK_DEPENDENCIES = [e for e in TEST_DEPENDENCIES if e not in ['"pytest-xdist"']]
BENCHMARK_DEPENDENCIES.append("py")
BENCHMARK_DEPENDENCIES.append("memray")
BENCHMARK_DEPENDENCIES.append("pytest-benchmark")

Expand Down
Loading

0 comments on commit 19b2516

Please sign in to comment.