Skip to content

Commit

Permalink
Bump version number and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
fuglede committed Dec 21, 2021
1 parent 24803bd commit 36d0de8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# Changelog

## [Unreleased]

## [0.0.2] - 2021-12-21

### Added
- The `greedy` function implements the natural greedy algorithm.
- The `complete_greedy` implements a depth-first search through all partitions using the order from the greedy algorithm.
- The `complete_greedy` function implements a depth-first search through all partitions using the order from the greedy algorithm.
- The `complete_karmarkar_karp` function implements the complete Karmarkar--Karp (CKK) algorithm.

### Authors

- Søren Fuglede Jørgensen
- Mads Thøisen

## [0.0.1] - 2021-08-28
Initial release
Expand Down
2 changes: 1 addition & 1 deletion src/numberpartitioning/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from .greedy import complete_greedy, greedy
from .karmarkar_karp import karmarkar_karp

__version__ = "0.0.1"
__version__ = "0.0.2"
__all__ = ["complete_greedy", "greedy", "karmarkar_karp", "complete_karmarkar_karp"]

0 comments on commit 36d0de8

Please sign in to comment.