Skip to content

Commit b7bc5a9

Browse files
committed
release: v0.11.1
1 parent 954fc01 commit b7bc5a9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

doc/source/assets.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For example, on Linux with Python 3.10, unzip the wheelhouse archive and install
2525

2626
.. code:: bash
2727
28-
unzip ansys-geometry-core-v0.11.0-all-wheelhouse-ubuntu-latest-3.10.zip wheelhouse
28+
unzip ansys-geometry-core-v0.11.1-all-wheelhouse-ubuntu-latest-3.10.zip wheelhouse
2929
pip install ansys-geometry-core -f wheelhouse --no-index --upgrade --ignore-installed
3030
3131
If you are on Windows with Python 3.10, unzip to a wheelhouse directory by running ``-d wheelhouse``

doc/source/getting_started/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ For example, on Linux with Python 3.10, unzip the wheelhouse archive and install
9494

9595
.. code:: bash
9696
97-
unzip ansys-geometry-core-v0.11.0-all-wheelhouse-ubuntu-3.10.zip wheelhouse
97+
unzip ansys-geometry-core-v0.11.1-all-wheelhouse-ubuntu-3.10.zip wheelhouse
9898
pip install ansys-geometry-core -f wheelhouse --no-index --upgrade --ignore-installed
9999
100100
If you are on Windows with Python 3.10, unzip the wheelhouse archive to a wheelhouse directory

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "ansys-geometry-core"
7-
version = "0.11.0"
7+
version = "0.11.1"
88
description = "A python wrapper for Ansys Geometry service"
99
readme = "README.rst"
1010
requires-python = ">=3.10,<4"

src/ansys/geometry/core/connection/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def backend_version(self) -> semver.version.Version:
261261
@deprecated_method(
262262
info="Multiple designs for the same service are no longer supported.",
263263
version="0.9.0",
264-
remove="0.11.0",
264+
remove="0.12.0",
265265
)
266266
def multiple_designs_allowed(self) -> bool:
267267
"""Flag indicating whether multiple designs are allowed.

src/ansys/geometry/core/math/bbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class BoundingBox2D:
5050
"""
5151

5252
@check_input_types
53-
@deprecated_method(alternative="BoundingBox", version="0.10.0", remove="0.11.0")
53+
@deprecated_method(alternative="BoundingBox", version="0.10.0", remove="0.12.0")
5454
def __init__(
5555
self,
5656
x_min: Real = sys.float_info.max,

src/ansys/geometry/core/modeler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def design(self) -> "Design":
134134
return self._design
135135

136136
@property
137-
@deprecated_method(alternative="design", version="0.9.0", remove="0.11.0")
137+
@deprecated_method(alternative="design", version="0.9.0", remove="0.12.0")
138138
def designs(self) -> dict[str, "Design"]:
139139
"""Retrieve the design within the modeler workspace.
140140

0 commit comments

Comments
 (0)