This update changed how parsing an empty string into BigInt works: https://github.com/attaswift/BigInt/commit/d2d29c1225d96d66c331712cce4eb4510322a243#diff-33404997836caa3c602713d04259952721517b81439ca84f263b778837c177bfR44 5.3.0: When you used `BigInt("")`, it would create a BigInt with a zero value: `BigInt(0)`. 5.4.0: Now, using `BigInt("")` causes a crash due to a [force unwrap](https://github.com/attaswift/BigInt/blob/master/Sources/String%20Conversion.swift#L186) Ideally, the expected behavior should be to return either a zero value or nil.