Skip to content
This repository was archived by the owner on Jan 24, 2026. It is now read-only.

Commit 36d0de8

Browse files
committed
Bump version number and update changelog
1 parent 24803bd commit 36d0de8

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# Changelog
22

33
## [Unreleased]
4+
5+
## [0.0.2] - 2021-12-21
6+
47
### Added
58
- The `greedy` function implements the natural greedy algorithm.
6-
- The `complete_greedy` implements a depth-first search through all partitions using the order from the greedy algorithm.
9+
- The `complete_greedy` function implements a depth-first search through all partitions using the order from the greedy algorithm.
10+
- The `complete_karmarkar_karp` function implements the complete Karmarkar--Karp (CKK) algorithm.
11+
12+
### Authors
13+
14+
- Søren Fuglede Jørgensen
15+
- Mads Thøisen
716

817
## [0.0.1] - 2021-08-28
918
Initial release

src/numberpartitioning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
from .greedy import complete_greedy, greedy
33
from .karmarkar_karp import karmarkar_karp
44

5-
__version__ = "0.0.1"
5+
__version__ = "0.0.2"
66
__all__ = ["complete_greedy", "greedy", "karmarkar_karp", "complete_karmarkar_karp"]

0 commit comments

Comments
 (0)