stringer release changelog
June 27, 2019 ยท View on GitHub
TODO
- [TODO] If args to
strfmtare literals then directly.appendthem withoutnilcheck - [Todo] Fix symbol hinting for
nilvalues inappend!
0.4.1 / 2019-June-27
- Add
nrenderfn to format string (non-literal) with named-parameters
0.4.0 / 2019-April-17
- [BREAKING CHANGE] Drop support for Clojure 1.5 and 1.6
- Fix
strfmtto support the default width qualifier for%f - Fix #3 - Add formatting support with named parameters
nformat(in-line formatting)fmt(fn support for formatting)
0.3.1 / 2018-November-26
- Fix unused type hint (via #2 by @gzmask - Ray Lei)
0.3.0 / 2016-October-13
- Fix #1
strfmtto accept format-string as non-literal, eval'ed as a string at compile time - Efficiently repeat a string:
repstr - Efficiently repeat a character:
repchar - Efficient generation of string-representation of a table:
strtbl
0.2.0 / 2016-April-21
- New macro
strfmt- faster string formatting thanclojure.core/format- Supports
%%,%b,%d,%f,%h,%n,%o,%sand%xconversion specifiers - Supports upper-case variants
%B,%H,%Sand%Xconversion specifiers - Does NOT support flags and width qualifiers in format specifiers
- Supports
0.1.2 / 2015-December-16
- fix issue in
strcatwhere a token was being evaluated twice
0.1.1 / 2015-June-01
- Optimize
join!by using loop-recur instead ofinterpose
0.1.0 / 2015-May-20
- New macro
strcatfor faster string concatenation thanclojure.core/str - New macro
strdelfor faster string joining thanclojure.string/join