Skip to content

Commit bd6a3e0

Browse files
committed
Prep for release
1 parent f401ac7 commit bd6a3e0

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
### 0.7.7 (2018-03-16) ###
2+
3+
New features
4+
5+
* Implementation of unsorted (index-free) loading
6+
* `cooler.io.create_from_unsorted` takes an iterable of pixel dataframe chunks that need not be properly sorted.
7+
* Use input sanitization procedures for pairs `sanitize_records` and binned data `sanitize_pixels` to feed data to `create_from_unsorted`. #87 #108 #109
8+
* The `cooler load` command is now index-free: unsorted `COO` and `BG2` input data can be streamed in. #90. This will soon be implemented as an option for loading pairs as well.
9+
* Prevent `cooler balance` command from exiting with non-zero status upon failed convergence using convergence error policies. #93
10+
* Improve the `create` API to support pandas read_csv-style `columns` and `dtype` kwargs to add extra value columns or override default dtypes. #108
11+
* Experimental implementation of trans-only balancing. #56
12+
13+
Bug fixes
14+
15+
* Fix argmax deprecation. #99
16+
17+
118
### 0.7.6 (2017-10-31) ###
219
New features
320

cooler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
"""
1313
import logging
14-
__version__ = '0.7.7-dev'
14+
__version__ = '0.7.7'
1515
__format_version__ = 2
1616
_logger = None
1717

0 commit comments

Comments
 (0)