Skip to content

Releases: ScottBoyce-Python/ResultContainer

v0.4

09 Jan 21:56
Compare
Choose a tag to compare

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

02 Jan 16:43
Compare
Choose a tag to compare

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

27 Dec 16:52
Compare
Choose a tag to compare

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