Releases: mdolab/pyhyp
Releases · mdolab/pyhyp
v2.6.1
v2.6.0
New features
Bugfixes
- Fixed tests hanging under Intel/Centos image by @nwu63 in #56
Maintenance and documentation
- Added some details to options documentation by @sseraj in #55
- Changed branch name by @sseraj in #57
- Update make rules with proper format by @eirikurj in #59
- Clarifying error message by @hajdik in #58
Full Changelog: v2.5.0...v2.6.0
v2.5.0
v2.4.0
v2.3.2
After some discussion, we have decided to have certain option values use capitalization for readability. This affects the following options:
fileType
outputType
Both now take in eitherCGNS
orPLOT3D
, as opposed tocgns
andplot3d
that were previously accepted.
v2.3.1
v2.3.0
This release refactors the code to:
- Automatically generate the options documentation
- Make the pyHyp class inherit from BaseSolver in baseclasses
The option type and value checking in BaseSolver may break backward compatibility for some pyHyp runscripts, most commonly in two ways:
- String-type values are now case sensitive. This mainly comes up for
fileType
andouterFaceBC
. - The distinction between
float
andint
types is now enforced. This is commonly an issue formarchDist
,ps0
,pGridRatio
, andcmax
.
See #36 for the full changes.