v7.0.0
What's Changed
- Added mass specific volume for the inputs and outputs of fluids, mixtures and humid air by @portyanikhin in #191
- Added the ability to specify the phase for fluids and mixtures by @portyanikhin in #192
- Documentation update by @portyanikhin in #193
- Bump UnitsNet from 5.9.0 to 5.29.0 by @dependabot in #150, #153, #173, #182 and #190
- Bump UnitsNet.NumberExtensions from 5.9.0 to 5.29.0 by @dependabot in #151, #152, #174, #183 and #189
- Bump UnitsNet.Serialization.JsonNet from 5.5.0 to 5.28.0 by @dependabot in #186
⚡️Breaking Changes
- To compare instances of the
Fluid
,Mixture
, andHumidAir
classes, you now need to use only theEquals
method (not the equality operators:==
and!=
). - The
Reset
method of theFluid
,Mixture
andHumidAir
classes has become public. - The
Fluid
,Mixture
, andHumidAir
classes now implements theIFluid
,IMixture
, andIHumidAir
interfaces, respectively.
Now, to add new properties to these classes, you also need to extend these interfaces. See examples: FluidExtended class and IFluidExtended interface (for theFluid
andMixture
); HumidAirExtended class and IHumidAirExtended interface (for theHumidAir
).
Full Changelog: v6.0.4...v7.0.0