Skip to content

Releases: ScottBoyce-Python/ResultContainer

v0.4

Choose a tag to compare

@ScottBoyce ScottBoyce released this 09 Jan 21:56

Third release of ResultContainer.

Added more tests and inspect, Ok_and, and Ok_or methods. Added an attribute and method check for accidental use of lower case methods. For example, the correct use is Ok(5).add_Err_msg("error"), but Ok(5).add_err_msg("error") will redirect to the case correct version.

Lots of other changes, see commit history for more details.

v0.3

Choose a tag to compare

@ScottBoyce ScottBoyce released this 02 Jan 16:43

Second release of ResultContainer.
Still under heavy development so method names and functionality are expected to change.
Major chains are simplifying the structure by merging the _Ok and _Err attributes to _val.
if _val is an Err then it must be a ResultErr type.

ResultErr removed error codes to improve speed.
Lots of other changes, see commit history for more details.

v0.2

Choose a tag to compare

@ScottBoyce ScottBoyce released this 27 Dec 16:52

Initial release of ResultContainer.
Still under heavy development so method names and functionality are expected to change.