NaturalSort.Extension v3.0.0 Release Notes

Release Date: 2020-05-30 // almost 4 years ago
    • ๐ŸŽ Changed the API to use more general StringComparison enum or the more general IComparer<string> (instead of StringComparer). Note that using StringComparison instead of IComparer<string>/StringComparer should have better performance as there's no need to allocate substrings.
    • Made NaturalSortComparer public, so you can construct it directly without an extension method.
    • ๐Ÿ”„ Changed the extension class name (possibly a breaking change if you're not calling it via the extension method).

Previous changes from v2.2.1

    • ๐Ÿ›  Fixed #4 infinite loop in v2.2.0 (thanks @El-Gor-do)