From 36de0909ced49e916f3c72bb9e7ec177ff1a4d2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 15:33:30 +0100 Subject: [PATCH 1/4] MAINT: Bump pytest from 8.3.3 to 8.3.4 (#459) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> --- doc/changelog.d/459.documentation.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 doc/changelog.d/459.documentation.md diff --git a/doc/changelog.d/459.documentation.md b/doc/changelog.d/459.documentation.md new file mode 100644 index 000000000..ab5c2e118 --- /dev/null +++ b/doc/changelog.d/459.documentation.md @@ -0,0 +1 @@ +MAINT: Bump pytest from 8.3.3 to 8.3.4 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 44ee7cd0d..50572ab34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ tests = [ "grpcio==1.67.1", "protobuf==5.28.0", - "pytest==8.3.3", + "pytest==8.3.4", "pytest-cov==6.0.0", ] doc = [ From aefc18160f7c35003586729ebad15e47a2f3a55b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 15:49:48 +0100 Subject: [PATCH 2/4] MAINT: Bump ansys-sphinx-theme from 1.2.1 to 1.2.3 (#463) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> --- doc/changelog.d/463.documentation.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 doc/changelog.d/463.documentation.md diff --git a/doc/changelog.d/463.documentation.md b/doc/changelog.d/463.documentation.md new file mode 100644 index 000000000..033e60469 --- /dev/null +++ b/doc/changelog.d/463.documentation.md @@ -0,0 +1 @@ +MAINT: Bump ansys-sphinx-theme from 1.2.1 to 1.2.3 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 50572ab34..994ff5a72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ tests = [ "pytest-cov==6.0.0", ] doc = [ - "ansys-sphinx-theme==1.2.1", + "ansys-sphinx-theme==1.2.3", "numpydoc==1.8.0", "Sphinx==8.1.3", # BLOCKED BY sphinx-design - Cannot upgrade to Sphinx 7 for now "sphinx-copybutton==0.5.2", From 50e38f55402cf3cd00d499ad88c30d928d6169f4 Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Tue, 10 Dec 2024 17:17:52 +0100 Subject: [PATCH 3/4] fix: import statements (#470) Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> --- doc/changelog.d/470.fixed.md | 1 + src/ansys/sherlock/core/model.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 doc/changelog.d/470.fixed.md diff --git a/doc/changelog.d/470.fixed.md b/doc/changelog.d/470.fixed.md new file mode 100644 index 000000000..596e361a2 --- /dev/null +++ b/doc/changelog.d/470.fixed.md @@ -0,0 +1 @@ +fix: import statements \ No newline at end of file diff --git a/src/ansys/sherlock/core/model.py b/src/ansys/sherlock/core/model.py index 638710506..18e948f6c 100644 --- a/src/ansys/sherlock/core/model.py +++ b/src/ansys/sherlock/core/model.py @@ -13,8 +13,8 @@ import SherlockModelService_pb2_grpc except ModuleNotFoundError: from ansys.api.sherlock.v0 import SherlockModelService_pb2 + from ansys.api.sherlock.v0.SherlockModelService_pb2 import MeshType, TraceOutputType from ansys.api.sherlock.v0 import SherlockModelService_pb2_grpc - from SherlockModelService_pb2 import MeshType, TraceOutputType from ansys.sherlock.core import LOG from ansys.sherlock.core.errors import ( From 972b169bc57843c0dca5127fd84416976c95d982 Mon Sep 17 00:00:00 2001 From: PyAnsys CI Bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Tue, 10 Dec 2024 18:32:22 +0100 Subject: [PATCH 4/4] chore: update CHANGELOG for v0.8.1 (#471) --- doc/changelog.d/459.documentation.md | 1 - doc/changelog.d/463.documentation.md | 1 - doc/changelog.d/467.fixed.md | 1 - doc/changelog.d/470.fixed.md | 1 - doc/changelog.d/471.documentation.md | 1 + doc/source/changelog.rst | 58 ++++++++++++++++++++++++++++ 6 files changed, 59 insertions(+), 4 deletions(-) delete mode 100644 doc/changelog.d/459.documentation.md delete mode 100644 doc/changelog.d/463.documentation.md delete mode 100644 doc/changelog.d/467.fixed.md delete mode 100644 doc/changelog.d/470.fixed.md create mode 100644 doc/changelog.d/471.documentation.md diff --git a/doc/changelog.d/459.documentation.md b/doc/changelog.d/459.documentation.md deleted file mode 100644 index ab5c2e118..000000000 --- a/doc/changelog.d/459.documentation.md +++ /dev/null @@ -1 +0,0 @@ -MAINT: Bump pytest from 8.3.3 to 8.3.4 \ No newline at end of file diff --git a/doc/changelog.d/463.documentation.md b/doc/changelog.d/463.documentation.md deleted file mode 100644 index 033e60469..000000000 --- a/doc/changelog.d/463.documentation.md +++ /dev/null @@ -1 +0,0 @@ -MAINT: Bump ansys-sphinx-theme from 1.2.1 to 1.2.3 \ No newline at end of file diff --git a/doc/changelog.d/467.fixed.md b/doc/changelog.d/467.fixed.md deleted file mode 100644 index ed44b11e7..000000000 --- a/doc/changelog.d/467.fixed.md +++ /dev/null @@ -1 +0,0 @@ -fix: conf.py issue \ No newline at end of file diff --git a/doc/changelog.d/470.fixed.md b/doc/changelog.d/470.fixed.md deleted file mode 100644 index 596e361a2..000000000 --- a/doc/changelog.d/470.fixed.md +++ /dev/null @@ -1 +0,0 @@ -fix: import statements \ No newline at end of file diff --git a/doc/changelog.d/471.documentation.md b/doc/changelog.d/471.documentation.md new file mode 100644 index 000000000..e1ddf4c47 --- /dev/null +++ b/doc/changelog.d/471.documentation.md @@ -0,0 +1 @@ +chore: update CHANGELOG for v0.8.1 \ No newline at end of file diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index cb1b8c0b4..f37cd0896 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -9,5 +9,63 @@ This document contains the release notes for the project. .. towncrier release notes start +`0.8.1 `_ - 2024-12-10 +=============================================================================== + +Fixed +^^^^^ + +- fix: conf.py issue `#467 `_ +- fix: import statements `#470 `_ + + +Documentation +^^^^^^^^^^^^^ + +- MAINT: Bump pytest from 8.3.3 to 8.3.4 `#459 `_ +- MAINT: Bump ansys-sphinx-theme from 1.2.1 to 1.2.3 `#463 `_ + +`0.8.0 `_ - 2024-12-10 +=============================================================================== + +Fixed +^^^^^ + +- fix: conf.py issue `#467 `_ + +`0.8.0 `_ - 2024-12-09 +=============================================================================== + +Added +^^^^^ + +- feat: launching a specific version of Sherlock `#431 `_ + + +Fixed +^^^^^ + +- fix: proper AUTHORS file `#438 `_ + + +Documentation +^^^^^^^^^^^^^ + +- MAINT: add action changelog and changelog.rst for release notes `#426 `_ +- Update unit test for HV strain map analysis. `#428 `_ +- MAINT: Bump ansys-sphinx-theme from 1.1.6 to 1.1.7 `#429 `_ +- MAINT: Bump grpcio from 1.67.0 to 1.67.1 `#433 `_ +- MAINT: Bump pytest-cov from 5.0.0 to 6.0.0 `#434 `_ +- MAINT: Bump ansys-sphinx-theme from 1.1.7 to 1.2.0 `#436 `_ +- feat: Adding version check to all API methods `#440 `_ +- feat: Keith/potting region update `#441 `_ +- fix: Analysis.update_harmonic_vibe_props(): add support for setting model source and strain map natural frequency `#442 `_ +- docs: update the pull request template `#446 `_ +- feat:Keith/copy delete potting region `#448 `_ +- MAINT: Bump ansys-sphinx-theme from 1.2.0 to 1.2.1 `#449 `_ +- doc: project logo `#450 `_ +- MAINT: Bump codecov/codecov-action from 4 to 5 `#451 `_ +- feat: add type hints `#454 `_ +- feat: increment version of ansys-api-sherlock to 0.1.35 `#461 `_ .. vale on \ No newline at end of file