Packages
ex_cldr_lists
2.3.0
2.12.2
2.12.1
2.12.0
2.11.1
2.11.0
2.10.2
2.10.1
2.10.0
2.9.0
2.9.0-rc.2
2.9.0-rc.1
2.9.0-rc.0
2.8.0
2.8.0-rc.0
2.7.0
2.7.0-rc.0
2.6.1
2.6.0
2.5.0
2.5.0-rc.0
2.4.0
2.3.0
2.2.2
2.2.1
2.2.0
2.1.0
2.0.2
2.0.1
2.0.0
1.2.0
1.1.0
1.0.0
1.0.0-rc.0
retired
0.3.3
retired
0.3.2
retired
0.3.1
retired
0.3.0
retired
0.2.2
retired
0.2.1
retired
0.2.0
retired
0.1.3
retired
0.1.2
retired
0.1.1
retired
0.1.0
List formatting functions for the Common Locale Data Repository (CLDR) package ex_cldr.
Current section
Files
Jump to
Current section
Files
ex_cldr_lists
CHANGELOG.md
CHANGELOG.md
# Changelog for Cldr_Lists v2.3.0
This is the changelog for Cldr_lists v2.3.0 released on August 29th, 2019. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/cldr_lists/tags)
### Enhancements
* Add `Cldr.List.known_list_styles/0`
# Changelog for Cldr_Lists v2.2.2
This is the changelog for Cldr_lists v2.2.2 released on August 23rd, 2019. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/cldr_lists/tags)
### Bug Fixes
* Fix `@spec` for `Cldr.List.to_string/3` and `Cldr.List.to_string!/3`
# Changelog for Cldr_Lists v2.2.1
This is the changelog for Cldr_lists v2.2.1 released on August 21st, 2019. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/cldr_lists/tags)
### Bug Fixes
* Replace `Cldr.get_current_locale/0` with `Cldr.get_locale/0` in docs
* The option `:backend` to `Cldr.List.to_string/3` will be used as the backend if provided
* Fix dialyzer warnings
# Changelog for Cldr_Lists v2.2.0
This is the changelog for Cldr_lists v2.2.0 released on March 28th, 2019. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/cldr_lists/tags)
### Enhancements
* Updates to [CLDR version 35.0.0](http://cldr.unicode.org/index/downloads/cldr-35) released on March 27th 2019.
# Changelog for Cldr_Lists v2.1.0
This is the changelog for Cldr_lists v2.1.0 released on March 23rd, 2019. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/cldr_lists/tags)
### Enhancements
* Support `Cldr.default_backend/0` and apply it as the default for functions in `Cldr.List`
# Changelog for Cldr_Lists v2.0.2
This is the changelog for Cldr_lists v2.0.2 released on March 20th, 2019. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/cldr_lists/tags)
### Bug Fixes
* Fix dialyzer warnings
# Changelog for Cldr_Lists v2.0.1
This is the changelog for Cldr_lists v2.0.1 released on March 15th, 2019. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/cldr_lists/tags)
### Enhancements
* Makes generation of documentation for backend modules optional. This is implemented by the `:generate_docs` option to the backend configuration. The default is `true`. For example:
```
defmodule MyApp.Cldr do
use Cldr,
default_locale: "en-001",
locales: ["en", "ja"],
gettext: MyApp.Gettext,
generate_docs: false
end
```
# Changelog for Cldr_Lists v2.0.0
This is the changelog for Cldr_lists v2.0.0 released on November 24th, 2018. For older changelogs please consult the release tag on [GitHub](https://github.com/kipcole9/cldr_lists/tags)
### Enhancements
* Move to a backend module structure with [ex_cldr](https://hex.pm/packages/ex_cldr) version 2.0
* Add `Cldr.List.intersperse/3`. Thanks to @lostkobrakai. Closes #2.