Skip to content

Commit bb29141

Browse files
committed
Bump to 0.9.0
1 parent 0434983 commit bb29141

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55
[project]
66
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
77
name = "ansys-dpf-core"
8-
version = "0.8.2.dev0"
8+
version = "0.9.0"
99
description = "Data Processing Framework - Python Core "
1010
readme = "README.md"
1111
requires-python = ">=3.8, <4"
@@ -24,7 +24,7 @@ classifiers = [
2424
"Operating System :: OS Independent",
2525
]
2626
dependencies = [
27-
"ansys-dpf-gate>=0.3.0",
27+
"ansys-dpf-gate>=0.4.0",
2828
"importlib-metadata >=4.0",
2929
"numpy",
3030
"packaging",

src/ansys/dpf/core/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Version for ansys-dpf-core"""
22
# major, minor, patch
3-
version_info = 0, 8, 2, "dev0"
3+
version_info = 0, 9, 0
44

55
# Nice string for the version
66
__version__ = ".".join(map(str, version_info))

0 commit comments

Comments
 (0)