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

Bump to v0.2.0 #43

Merged
merged 2 commits into from
Apr 27, 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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
files = axidence/__init__.py
commit = True
tag = True
Expand Down
17 changes: 17 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
v0.2.0 / 2024-04-27
-------------------
* Add `EventBuilding` cut by @dachengx in https://github.com/dachengx/axidence/pull/20
* Add prototype for isolated peaks by @dachengx in https://github.com/dachengx/axidence/pull/22
* Build events at once by @dachengx in https://github.com/dachengx/axidence/pull/27
* Save both peak and event-level fields into isolated peaks by @dachengx in https://github.com/dachengx/axidence/pull/30
* Prototype of `PairedPeaks` by @dachengx in https://github.com/dachengx/axidence/pull/31
* Add method `replication_tree` to `strax.Context` by @dachengx in https://github.com/dachengx/axidence/pull/34
* Connect salting and paring dependency tree by @dachengx in https://github.com/dachengx/axidence/pull/35
* Debug `do_compute` in plugin factory by @dachengx in https://github.com/dachengx/axidence/pull/37
* Accelerate `replication_tree` by @dachengx in https://github.com/dachengx/axidence/pull/38
* Add other peak and event level pairing plugins by @dachengx in https://github.com/dachengx/axidence/pull/39
* Add `PairingExists` by @dachengx in https://github.com/dachengx/axidence/pull/41

**Full Changelog**: https://github.com/dachengx/axidence/compare/v0.1.0...v0.2.0


v0.1.0 / 2024-04-24
-------------------
* Add package structure by @dachengx in https://github.com/dachengx/axidence/pull/6
Expand Down
2 changes: 1 addition & 1 deletion axidence/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.0"
__version__ = "0.2.0"

from . import dtypes
from .dtypes import *
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "axidence"
version = "0.1.0"
version = "0.2.0"
description = "strax-based data-driven accidental coincidence background simulation and peak-level salting"
readme = "README.md"
license.file = "LICENSE"
Expand Down
Loading