-
Notifications
You must be signed in to change notification settings - Fork 929
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [1.5.0](1.4.0...1.5.0) (2020-03-30) ### Features * **linkedList:** remove by node ([eac045a](eac045a)) * **lru-cache:** add new implementations ([3e787c6](3e787c6)) * **trie:** remove method ([16005f3](16005f3))
- Loading branch information
1 parent
76854c6
commit bcc81b4
Showing
3 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "dsa.js", | ||
"version": "1.3.11", | ||
"version": "1.5.0", | ||
"description": "Data Structures & Algorithms in JS", | ||
"author": "Adrian Mejia <[email protected]> (https://adrianmejia.com)", | ||
"homepage": "https://github.com/amejiarosario/dsa.js", | ||
|
@@ -108,9 +108,12 @@ | |
"@semantic-release/changelog", | ||
"@semantic-release/github", | ||
"@semantic-release/npm", | ||
["@semantic-release/git", { | ||
"message": ":bookmark: chore(release): ${nextRelease.version} \n\n${nextRelease.notes}" | ||
}] | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"message": ":bookmark: chore(release): ${nextRelease.version} \n\n${nextRelease.notes}" | ||
} | ||
] | ||
] | ||
} | ||
} |