###In Development
###v1.12.4 - 2014-02-25
- #95: Added NoMatch optional parameter to DehumanizeTo & renamed
CannotMapToTargetException
toNoMatchFoundException
####Breaking Changes
If you were catching CannotMapToTargetException
on a DehumanizeTo
call, that's been renamed to NoMatchFoundException
to make it more generic.
###v1.11.3 - 2014-02-18
- #93: added non-generic DehumanizeTo for Enums unknown at compile time
###v1.10.1 - 2014-02-15
###v1.9.1 - 2014-02-12
- #78: added support for billions to
ToWords
###v1.8.16 - 2014-02-12
- #81: fixed issue with localised methods returning null in Windows Store apps
- Created Humanizr.net website as GitHub pages
###v1.8.1 - 2014-02-04
- #73: added
ToWords
implementation for Arabic
###v1.7.1 - 2014-02-31
- #68:
DateTime.Humanize()
now supports future dates
###v1.6.1 - 2014-01-27
- #69: changed the return type of
DehumanizeTo<TTargetEnum>
toTTargetEnum
####Potential breaking change
The return type of DehumanizeTo<TTargetEnum>
was changed from Enum
to TTargetEnum
to make the API a lot easier to work with.
That also potentially means that your calls to the old method may be broken.
Depending on how you were using the method you might have to either drop the now redundant cast to TTargetEnum
in your code, or
fix it based on your requirements.
###v1.5.1 - 2014-01-23
- #65: added precision to
TimeSpan.Humanize
###v1.4.1 - 2014-01-20
- #62: added
ShowQuantityAs
parameter toToQuantity
###v1.3.1 - 2014-14-01
- #51: added Spanish translation for
DateTime.Humanize
- #52: added Arabic translation for
DateTime.Humanize
- #53: added
Hyphenate
as an overload forDasherize
- #54: added Portuguese translation for
DateTime.Humanize
- #55: added Arabic translation for
TimeSpan.Humanize
###v1.1.0 - 2014-01-01
- #37: added
ToQuantity
method - #43:
- added
Plurality
enum - can call
Singularize
on singular andPluralize
on plural words ToQuantity
can be called on words with unknown plurality
- added
###v1.0.29 - 2013-12-25
- #26: added Norwegian (nb-NO) localization for
DateTime.Humanize()
- #33:
- changed to Portable Class Library with support for .Net 4+, SilverLight 5, Windows Phone 8 and Win Store applications
- symbols nuget package is published so you can step through Humanizer code while debugging your code
###v1.0.0 - 2013-11-10 No release history before this point: check out http://www.mehdi-khalili.com/humanizer-v1 for the feature-set at V1