diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a67bdf9..6c572d7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug Fixes (patch) +## [1.3.5] + +### Breaking Changes (major) + +### New Features (minor) + +### Bug Fixes (patch) +- fix(tree-rotations): prevent losing nodes [commit](https://github.com/amejiarosario/dsa.js/commit/1fa93415a6e14acc24e90443b2e9bdf053c4c983) + ## [1.3.4] ### Breaking Changes (major) @@ -97,7 +106,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - -[Unreleased]: https://github.com/amejiarosario/dsa.js/compare/1.3.4...HEAD +[Unreleased]: https://github.com/amejiarosario/dsa.js/compare/1.3.5...HEAD +[1.3.5]: https://github.com/amejiarosario/dsa.js/compare/1.3.4...1.3.5 [1.3.4]: https://github.com/amejiarosario/dsa.js/compare/1.2.3...1.3.4 [1.2.2]: https://github.com/amejiarosario/dsa.js/compare/1.2.2...1.2.3 [1.2.2]: https://github.com/amejiarosario/dsa.js/compare/1.2.1...1.2.2 diff --git a/notes.md b/notes.md index a353e9a2..4cc5c330 100644 --- a/notes.md +++ b/notes.md @@ -22,9 +22,9 @@ git log HEAD --pretty=format:%s # example git log 1.1.0..HEAD --pretty=format:%s -git log 1.2.3..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "BREAKING CHANGE:" -git log 1.2.3..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "^feat.*:" -git log 1.2.3..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "^fix.*:" +git log 1.3.4..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "BREAKING CHANGE:" +git log 1.3.4..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "^feat.*:" +git log 1.3.4..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "^fix.*:" ``` New features in this release diff --git a/package.json b/package.json index 2dae27e0..0840b6cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dsa.js", - "version": "1.3.4", + "version": "1.3.5", "description": "Data Structures & Algorithms in JS", "author": "Adrian Mejia (https://adrianmejia.com)", "homepage": "https://github.com/amejiarosario/dsa.js",