Skip to content

Version 1.4.4

Compare
Choose a tag to compare
@printfn printfn released this 05 Mar 09:30
· 72 commits to main since this release

Changes in this version:

  • Add == and != operators for equality and inequality (by @frectonz)

    For example:

    > 2 metres == 200 cm
    true
    > 4 kg == 2 lbs
    false
    
  • The fend CLI now uses native-tls by default, instead of rustls. On Windows this uses SChannel (via the schannel crate), on macOS it uses Secure Transport via the security-framework crate, and on Linux it links to OpenSSL with the openssl crate. You can continue using rustls by compiling with the --no-default-features --features rustls flags. See the CLI's Cargo.toml for further details.