Skip to content

0.8.0

Compare
Choose a tag to compare
@mxcl mxcl released this 26 Jan 20:46
· 126 commits to master since this release
67f4e5f

Bundle functions all return Path, not Path?.

Rationale: Paths are not guaranteed to exist, the Bundle functions return optional if the path doesn't exist. So we'll provide a sensible default instead and you need to check the result exists at some point instead.

This makes more elegant chains, the chain will fail when you operate on it, but you don’t have to do a check for optional first. Or risk a bang.