-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added changelog, bumped version to 0.7.0
- Loading branch information
1 parent
6cded65
commit 9685ec7
Showing
3 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Changelog | ||
Notable changes to dsigma will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.7.0] - 2023-01-06 | ||
|
||
### Changed | ||
|
||
- `dsigma.precompute.add_precompute_results` has been renamed to `dsigma.precompute.precompute` | ||
- `dsigma.precompute.add_maximum_lens_redshift` has been removed and the functionality integrated into `dsigma.precompute.precompute` using the `lens_source_cut` argument | ||
- `dsigma.jackknife.add_continous_fields`, `dsigma.jackknife.transfer_continous_fields`, `dsigma.jackknife.jackknife_field_centers`, and `dsigma.jackknife.add_jackknife_fields` have been merged into a single function, `dsigma.jackknife.compute_jackknife_fields` | ||
- the computation of continuous fields to construct jackknife patches now uses DBSCAN instead of agglomerative clustering, points are also not downsampled anymore | ||
|
||
### Removed | ||
|
||
- `dsigma.stacking.shape_noise_error`, please use jackknife resampling to estimate errors | ||
|
||
## [0.6.1] - 2023-01-01 | ||
|
||
### Changed | ||
|
||
- significant performance improvements for `dsigma.precompute.add_precompute_results` | ||
|
||
### Fixed | ||
|
||
- crashes in `dsigma.stacking.shape_noise_error` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
include LICENSE | ||
include README.md | ||
include CHANGELOG.md | ||
include pyproject.toml | ||
include dsigma/precompute_engine.pyx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters