8000 bump version · learning-javascript/dsa.js@f5a6b79 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f5a6b79

Browse files
committed
bump version
1 parent 83c1a9c commit f5a6b79

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

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

1414
### Bug Fixes (patch)
1515

16+
## [1.2.1]
17+
18+
### Breaking Changes (major)
19+
20+
### New Features (minor)
21+
22+
### Bug Fixes (patch)
23+
- fix(linked-list): insert in the middle bug [commit](https://github.com/amejiarosario/dsa.js/commit/f8bd4fd8fa6c8dcb0d26f54a6ed7d80e5443d65b)
24+
- Various docs fixes.
25+
1626
## [1.2.0] - 2019-04-04
1727

1828
### Breaking changes (major)
@@ -58,8 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5868

5969
-
6070

61-
6271
[Unreleased]: https://github.com/amejiarosario/dsa.js/compare/1.2.0...HEAD
72+
[1.2.1]: https://github.com/amejiarosario/dsa.js/compare/1.2.0...1.2.1
6373
[1.2.0]: https://github.com/amejiarosario/dsa.js/compare/1.1.0...1.2.0
6474
[1.1.0]: https://github.com/amejiarosario/dsa.js/compare/1.0.0...1.1.0
6575
[1.0.0]: https://github.com/amejiarosario/dsa.js/releases/tag/1.0.0

notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ git log <last tag> HEAD --pretty=format:%s
2121

2222
# example
2323
git log 1.1.0..HEAD --pretty=format:%s
24+
25+
git log 1.2.0..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "^fix.*:"
26+
27+
git log 1.2.0..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "^break.*:"
28+
29+
git log 1.2.0..HEAD --pretty=format:"- %s [commit](https://github.com/amejiarosario/dsa.js/commit/%H)" --grep "^feat.*:"
2430
```
2531

2632
New features in this release

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.2.0",
3+
"version": "1.2.1",
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)
0