Skip to content

Commit c322eb9

Browse files
authored
Merge pull request #32 from eyas-ranjous/development
v3.10.1
2 parents ac70cde + f47dc5a commit c322eb9

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.10.1] - 2020-08-12
10+
### Fixed
11+
- typos
12+
913
## [3.10.0] - 2020-06-12
1014
### Fixed
1115
- refactor

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import {
6464
```
6565

6666
### Usage
67-
default order is ascending. all algorithms accept a comparison callback as the second param except radix sort which accepts the order as a string "asc" or "decs" and a second param callback to obtain a number value from an object.
67+
default order is ascending. all algorithms accept a comparison callback as the second param except radix sort which accepts the order as a string "asc" or "desc" and a second param callback to obtain a number value from an object.
6868

6969
#### Examples
7070

lib/insertionSort.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* sort-algorithms-js
3-
* @copyright 2018 Eyas Ranjous <eyas.ranjous@gmail.com>
3+
* @copyright 2020 Eyas Ranjous <eyas.ranjous@gmail.com>
44
* @license MIT
55
*/
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sort-algorithms-js",
3-
"version": "3.10.0",
3+
"version": "3.10.1",
44
"description": "production-ready sort algorithms implementation in javascript.",
55
"main": "index.js",
66
"directories": {

0 commit comments

Comments
 (0)