From 033e56b7382ce0daa9fdfc6d3f4edbb718f44dbb Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Sat, 27 Apr 2024 11:41:37 -0400 Subject: [PATCH] Bump to v0.2.0 (#43) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 0.1.0 → 0.2.0 --- .bumpversion.cfg | 2 +- HISTORY.md | 17 +++++++++++++++++ axidence/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 385eada..cfc64c0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 files = axidence/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 306dfd8..42a002c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/axidence/__init__.py b/axidence/__init__.py index 15b9d99..5a1c9e0 100644 --- a/axidence/__init__.py +++ b/axidence/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" from . import dtypes from .dtypes import * diff --git a/pyproject.toml b/pyproject.toml index d16972c..5daf750 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"