Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update version and changelog #515

Merged
merged 5 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
# Release notes

## [Upcoming release](https://github.com/open2c/cooltools/compare/v0.6.1...HEAD)
## [Upcoming release](https://github.com/open2c/cooltools/compare/v0.6.2...HEAD)

## [v0.6.2](https://github.com/open2c/cooltools/compare/v0.6.1...v0.6.2)

### New features
* Add pool decorator to functions for supporting multiprocess
* `expected_cis` now accepts unbalanced cool file too

### API changes
* `expected_cis`
* output cvd table now also includes "dist_bp", "contact_frequency", and "n_valid" columns
* now returns "count.avg.smoothed" and "count.avg.smoothed.agg", when `clr_weight_name=None, smooth=True, aggregate_smoothed=True`

### Maintenance
* Replaced np.int with int in adaptive_coarsegrain
* OE update in sandbox
* Cross score sandbox fixes
* Support for pandas 2

## [v0.6.1](https://github.com/open2c/cooltools/compare/v0.6.0...v0.6.1)

### Maintenance
* Bug fix in CLI pileup


## [v0.6.0](https://github.com/open2c/cooltools/compare/v0.5.4...v0.6.0)

### New features
Expand Down
2 changes: 1 addition & 1 deletion cooltools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
import logging

__version__ = "0.6.1"
__version__ = "0.7.0"

from . import lib

Expand Down
Loading