From 7778a57772581393e3e56f7cd06b82652b798d78 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Tue, 30 Apr 2024 19:07:54 -0400 Subject: [PATCH] Bump to v1.6.3 (#836) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORT.md * Bump version: 1.6.2 → 1.6.3 * Minor change --- .bumpversion.cfg | 2 +- HISTORY.md | 22 ++++++++++++++++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- strax/__init__.py | 2 +- 5 files changed, 27 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f35fbeae..2f39d9a4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.2 +current_version = 1.6.3 files = setup.py strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 6dc6015c..2f9674df 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,25 @@ +1.6.3 / 2024-04-30 +--------------------- +* Install `graphviz` for the pytests by @dachengx in https://github.com/AxFoundation/strax/pull/817 +* Increase the timing precision of progress bar by @dachengx in https://github.com/AxFoundation/strax/pull/819 +* Initialize plugin because `depends_on` can be property by @dachengx in https://github.com/AxFoundation/strax/pull/820 +* Update context.py by @WenzDaniel in https://github.com/AxFoundation/strax/pull/821 +* Disable tqdm progress bar when `check_available` is empty by @dachengx in https://github.com/AxFoundation/strax/pull/822 +* Check the consistency of number of items in metadata and data in `dry_load_files` function by @dachengx in https://github.com/AxFoundation/strax/pull/824 +* Remove `strax.plugin` by @dachengx in https://github.com/AxFoundation/strax/pull/825 +* Pick out selection applying function by @dachengx in https://github.com/AxFoundation/strax/pull/826 +* Add `CutList` by @dachengx in https://github.com/AxFoundation/strax/pull/827 +* Update tags handling, added comment field. Allows to define superuns … by @WenzDaniel in https://github.com/AxFoundation/strax/pull/798 +* Prevent start being negative by @dachengx in https://github.com/AxFoundation/strax/pull/828 +* Tiny change on the trailing space by @dachengx in https://github.com/AxFoundation/strax/pull/830 +* Add `register_cut_list` by @dachengx in https://github.com/AxFoundation/strax/pull/831 +* Record all base classes when multiple inheritance by @dachengx in https://github.com/AxFoundation/strax/pull/832 +* Multiple output `DownChunkingPlugin` by @dachengx in https://github.com/AxFoundation/strax/pull/833 +* Add `ExhaustPlugin` that exhausts all chunks when fetching data by @dachengx in https://github.com/AxFoundation/strax/pull/835 + +**Full Changelog**: https://github.com/AxFoundation/strax/compare/v1.6.2...v1.6.3 + + 1.6.2 / 2024-04-04 --------------------- * Use parentheses to separate the class name and attributes in the representation of StorageFrontend by @dachengx in https://github.com/AxFoundation/strax/pull/809 diff --git a/docs/source/conf.py b/docs/source/conf.py index 6635a173..2b55d73d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = "1.6.2" +version = "1.6.3" # The full version, including alpha/beta/rc tags. -release = "1.6.2" +release = "1.6.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 870fdd94..85182be3 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def open_requirements(path): setuptools.setup( name="strax", - version="1.6.2", + version="1.6.3", description="Streaming analysis for xenon TPCs", author="strax developers", url="https://github.com/AxFoundation/strax", diff --git a/strax/__init__.py b/strax/__init__.py index ae4a95c9..45abb703 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = "1.6.2" +__version__ = "1.6.3" # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you