- Added ``merge()`` method for implementing merge sort algorithm. - ``insertion()/selection()`` can now just return the list when the size of list is less than or equal to 1.
0.1.2
------
- Added support for ``tuple`` of values in both ``insertion()`` and ``selection()`` sorting methods.
0.1.1
------
- Added validation for checking whether all the elements in a given list are strings or not in both ``insertion()`` and ``selection()`` sorting methods.
0.1.0
------
- First release. - Added ``insertion()`` method for implementing insertion sort algorithm. - Added ``selection()`` method for implementing selection sort algorithm.