Releases: solaluset/i18nice
Releases · solaluset/i18nice
Version 0.15.5
What's Changed
- Paths with hyphens are now supported
- Updated dependencies
Full Changelog: v0.15.4...v0.15.5
Version 0.15.4
Version 0.15.3
Version 0.15.2
What's Changed
- (potentially breaking) A dict will be considered plural only if all keys are plurals
Full Changelog: v0.15.1...v0.15.2
Version 0.15.1
What's Changed
- (potentially breaking) Positional arguments will not be passed to functions that don't have anything between brackets
- Updated dev dependencies
Full Changelog: v0.15.0...v0.15.1
Version 0.15.0
What's Changed
- (BREAKING) Changed custom functions again. Now it is
lambda *a, **kw: a[kw["count"] != 1]
.
Full Changelog: v0.14.1...v0.15.0
Version 0.14.1
Version 0.14.0
What's Changed
- (BREAKING) Changed custom functions interface. If you've used them, you basically need to change
lambda **kw: kw["count"] != 1
tolambda a, **kw: a[kw["count"] != 1]
. - Updated dependencies
Full Changelog: v0.13.3...v0.14.0