Skip to content

Commit

Permalink
v0.2.0 Changelog and package version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Ribeiro committed Jun 2, 2014
1 parent 568ce00 commit 495b456
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
46 changes: 46 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
CHANGELOG
=========

0.2.0 (2014-06-01)
* Graphs
** Shortest Path Faster Algorithm (#34)
** Bellman-Ford Shortest Path (#36)

* Math
** Extended Euclidean Algorithm (#37)

* Strings
** Karp-Rabin String Matching (#35)


0.1.0 (2014-05-30)
* Sorting
** Bubble Sort
** Quicksort
** Merge sort

* Graphs
** Dijkstra
** Topological Sort

* Math
** Fibonacci
** Fisher-Yates
** Euclidean GCD

* Search
** Binary Search
** Breadth first search (for BSTs)
** Depth first search (for BSTs)

* String
** Levenshtein edit distance

* Data Structures
** Binary Search Tree
** Graph
** Heap
** Linked list
** Priority Queue
** Queue
** Stack
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "algorithms",
"version": "0.1.0",
"version": "0.2.0",
"description": "Traditional computer science algorithms and data structures implemented in JavaScript",
"directories": {
"test": "test"
Expand Down

0 comments on commit 495b456

Please sign in to comment.