Changelog for Cldr_Messages v0.5.0
This is the changelog for CldrMessages v0.5.0 released on _, 2019. For older changelogs please consult the release tag on GitHub
Enhancements
- Adds compile time checking that bindings are provided to the
format/3
macro wherever possible
Changelog for Cldr_Messages v0.4.0
This is the changelog for Cldr_Messages v0.4.0 released on August 29th, 2019. For older changelogs please consult the release tag on GitHub
Bug Fixes
- Conditionally compile functions that depend on optional dependencies
Changelog for Cldr_Messages v0.3.0
This is the changelog for Cldr_Messages v0.3.0 released on August 29th, 2019. For older changelogs please consult the release tag on GitHub
Breaking Changes
- Standardize on the
Cldr.Message.format/3
as the public api.Cldr.Message.to_string/3
is removed.
Enhancements
- Add the macro
<backend>.Cldr.Message.format/3
to parse messages at compile time as a way to optiise performance at runtime. To use it addimport <backend>.Cldr.Message
to your module and useformat/3
. An example:
defmodule SomeModule do
import MyApp.Cldr.Message
def my_function do
format("this is a string with a param {param}", param: 3)
end
end
- Add
Cldr.Mesasge.format_to_list/3
formats to anio_list
Bug Fixes
- Fix dialyzer warnings. There are some warnings from combinators that will require
nimble_parsec
version 0.5.2 to be published before they are resolved.
Changelog for Cldr_Messages v0.2.0
This is the changelog for Cldr_Messages v0.2.0 released on August 27th, 2019. For older changelogs please consult the release tag on GitHub
Enhancements
- Uses
Cldr.Number.to_string/3
to format simple arguments that are numeric (integer, float and decimal). This gives a localised number format. An example:
iex> Cldr.Message.to_string "You have {number} jelly beans", number: 1234
"You have 1,234 jelly beans"
- Similarly applies localized formatting for dates, times, datetimes.
Changelog for Cldr_Messages v0.1.0
This is the changelog for Cldr_Messages v0.1.0 released on August 26th, 2019. For older changelogs please consult the release tag on GitHub
- Initial release. This release implements
Cldr.Message.to_string/3
andCldr.Message.format/3
This initial release is the basis for building a complete message localization solution as an alternative to Gettext. There is a long way to go until that is accomplished.