Skip to content

Commit c803ae7

Browse files
authored
Merge pull request #20 from datastructures-js/development
v3.1.2
2 parents 853728d + 1258397 commit c803ae7

File tree

9 files changed

+335
-200
lines changed

9 files changed

+335
-200
lines changed

.eslintrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
max-len: ["error", { "code": 80, "ignoreComments": true }],
44
"comma-dangle": ["error", {
55
"functions": "ignore"
6-
}]
6+
}],
7+
no-underscore-dangle: [
8+
"error",
9+
{ "allowAfterThis": true }
10+
]
711
},
812
"env": {
913
"mocha": true,

.npmignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
.git*
2-
*.spec.js
32
.travis.yml
3+
.gitignore
4+
.eslintrc
45
Gruntfile.js
5-
coverage/
6+
coverage/
7+
node_modules/
8+
test/

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [3.1.2] - 2020-04-10
10+
### Fixed
11+
- README
12+
- jsdoc
13+
914
## [3.1.1] - 2020-04-01
1015
### Fixed
1116
- use the same balancing algorithm for insert and remove.

0 commit comments

Comments
 (0)