Skip to content

Commit bb3ad9a

Browse files
authoredFeb 12, 2020
Merge pull request amejiarosario#40 from amejiarosario/version-bump
bump to 1.3.8

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed
 

‎CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Bug Fixes (patch)
1515

16+
## [1.3.8]
17+
18+
### Breaking Changes (major)
19+
20+
### New Features (minor)
21+
22+
### Bug Fixes (patch)
23+
- fix(book): fix typo, array pop, and BST images [commit](https://github.com/amejiarosario/dsa.js/commit/ac9858348943f9678d116c8076bfa3a3c5362741)
24+
1625
## [1.3.7]
1726

1827
### Breaking Changes (major)
@@ -125,7 +134,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
125134

126135
-
127136

128-
[Unreleased]: https://github.com/amejiarosario/dsa.js/compare/1.3.7...HEAD
137+
[Unreleased]: https://github.com/amejiarosario/dsa.js/compare/1.3.8...HEAD
138+
[1.3.7]: https://github.com/amejiarosario/dsa.js/compare/1.3.7...1.3.8
129139
[1.3.6]: https://github.com/amejiarosario/dsa.js/compare/1.3.6...1.3.7
130140
[1.3.6]: https://github.com/amejiarosario/dsa.js/compare/1.3.5...1.3.6
131141
[1.3.5]: https://github.com/amejiarosario/dsa.js/compare/1.3.4...1.3.5

‎book/content/part03/tree-intro.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ image::image33.png[image,width=348,height=189]
9090
(((Max-Heap)))
9191
(((Min-Heap)))
9292
(((Data Structures, Non-Linear, Binary Heap)))
93-
The heap (max-heap) is a type of binary tree where the children's values are higher than the parent. Opposed to the BST, the left child doesn’t have to be smaller than the right child.
93+
The heap (max-heap) is a type of binary tree where the parent's value is higher than the value of both children. Opposed to the BST, the left child doesn’t have to be smaller than the right child.
9494

9595
.Heap vs BST
9696
image::image34.png[image,width=325,height=176]

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dsa.js",
3-
"version": "1.3.7",
3+
"version": "1.3.8",
44
"description": "Data Structures & Algorithms in JS",
55
"author": "Adrian Mejia <hi+dsajs@adrianmejia.com> (https://adrianmejia.com)",
66
"homepage": "https://github.com/amejiarosario/dsa.js",

0 commit comments

Comments
 (0)
Please sign in to comment.