Skip to content

Commit e1de60f

Browse files
Merged PR 316039: Merging v23.1 revisioned changes into develop
Related work items: #629298
1 parent b5d73ff commit e1de60f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

ansys/dpf/core/_version.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
"""Version for ansys-dpf-core"""
22
# major, minor, patch
3-
version_info = 0, 5, 0
3+
version_info = 0, 6, 'dev0'
44

55
# Nice string for the version
66
__version__ = ".".join(map(str, version_info))
7-
__ansys_version__ = "222"
7+
__ansys_version__ = "231"
88
min_server_version = "2.0"
99

1010
server_to_ansys_grpc_dpf_version = {
1111
"1.0": "0.2.2",
1212
"2.0": "0.3.0",
1313
"3.0": "0.4.0",
1414
"4.0": "0.5.0",
15+
"5.0": "0.6.0",
1516
}
1617

1718
server_to_ansys_version = {
1819
"1.0": "2021R1",
1920
"2.0": "2021R2",
2021
"3.0": "2022R1",
2122
"4.0": "2022R2",
23+
"5.0": "2023R1",
2224
}

docs/source/getting_started/index.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,12 @@ with the server version as shown here:
121121
* - Ans.Dpf.Grpc.exe server version
122122
- ansys.grpc.dpf python module version
123123
- ansys.dpf.core python module version
124+
* - 5.0 (Ansys 2023R1)
125+
- 0.6.0
126+
- >=0.6.0
127+
* - 4.0 (Ansys 2022R2)
128+
- 0.5.0
129+
- >=0.5.0
124130
* - 3.0 (Ansys 2022R1)
125131
- 0.4.0
126132
- >=0.4.0

0 commit comments

Comments
 (0)