v0.3.0
- Add a
:decimalcolumn type, backed by the optional:decimalpackage ({:decimal, "~> 3.1"}). It rounds exactly half-up, keeps trailing zeros, and never emits scientific notation, unlike:float. Declaring a:decimalcolumn without the package is a compile-time error; every other type is unaffected. 3.1 is required becauseDecimal.parse/1in 2.x is subject to CVE-2026-32686. - Passing a
Decimalto a:floatcolumn now raises an error pointing at the:decimaltype, instead of the generic "Invalid float value". - Tidy the
:floaterror messages: fix a "Cannort parse float value" typo, and stop double-quoting values thatinspect/1already quotes. - Fix an
ArithmeticErrorwhen anilvalue reached a:floatcolumn that haddigits:set.nilnow renders as an empty column for every type, as documented. - Add
usage-rules.md, describing the DSL for consuming projects. - Fix the
READMEexamples: the column header option isheader:, notlabel:.
v0.2.1
- Update the docs canonical URL to the new per-package HexDocs subdomain style.
v0.2.0
- Drop the
calendardependency in favour of the standard libraryCalendar.strftime/2. - Requires Elixir 1.11 or later.
v0.1.7
- Update dependencies.
v0.1.6
- Ensure the
delimiter,line ending,decimal point, andheaderoptions fall back to their defaults when set tonil.
v0.1.5
- :string will not always convert to string
v0.1.4
- Double the double quotes inside a string.
v0.1.3
- Default nil values to empty columns
- Allow integer values in float columns
v0.1.2
- add
hardcoded/3 - add
header/1 - Update README with formatter information
- Add exceptions
v0.1.1
Update documentation
Initial release
v0.1.0
- Initial release