All Versions
44
Latest Version
Avg Release Cycle
28 days
Latest Release
-

Changelog History
Page 5

  • v2.3.0 Changes

    ๐Ÿš€ This is the changelog for Cldr_units v2.3.0 released on March 4th, 2019. For older changelogs please consult the release tag on GitHub

    โœจ Enhancements

    • ๐Ÿš€ The conversion tables are now stored as json and updates may be downloaded at any time with the mix task mix cldr.unit.download. This means that updates to the conversion table may be made without requiring a new release of Cldr.Unit.
  • v2.2.0 Changes

    ๐Ÿš€ This is the changelog for Cldr_units v2.2.0 released on February 24th, 2019. For older changelogs please consult the release tag on GitHub

    โœจ Enhancements

    ๐Ÿš€ This release is primarily about improving the conversion of units without introducing precision errors that accumulate for floats. The strategy is to define the conversion value between individual unit pairs.

    ๐Ÿš€ Currently the implementation uses a static map. In order to give users a better experience a future release will allow for both specifying mappings as a parameter to Cldr.Unit.convert/2 and as compile time configuration options including the option to download conversion tables from the internet.

    • ๐Ÿ‘ Direct conversions are now supported. For some calculations, the process of diving and multiplying by conversion factors produces an unexpected result. Some direct conversions are now defined which produce a more expected result.

    • In most cases, return integer values from conversion and decomposition when the originating unit value is also an integer

  • v2.1.0 Changes

    ๐Ÿš€ This is the changelog for Cldr_units v2.1.0 released on December 8th, 2018. For older changelogs please consult the release tag on GitHub

    โœจ Enhancements

    • โž• Add Cldr.Unit.Conversion.convert!/2

    • โž• Add Cldr.Unit.Math.cmp/2

    • โž• Add Cldr.Unit.decompose/2

    • โž• Add Cldr.Unit.zero/1

    • โž• Add Cldr.Unit.zero?/1

    The appropriate backend equivalents are also added.

  • v2.0.0 Changes

    ๐Ÿš€ This is the changelog for Cldr_units v2.0.0 released on November 24th, 2018. For older changelogs please consult the release tag on GitHub

    ๐Ÿ’ฅ Breaking changes

    • ๐Ÿ”ง Cldr.Unit now requires a Cldr backend module to be configured

    • ๐Ÿ”ง In order for the String.Chars protocol to be supported (which is used in string interpolation and by Kernel.to_string/1) a default backend must be configured. For example in config.exs:

      config :ex_cldr_units,
      default_backend: MyApp.Cldr
      

    โœจ Enhancements

    • ๐Ÿ“ฆ Move to a backend module structure with ex_cldr version 2.0