From 7396d79ef4661a7d17414740b38b4d63573bcd66 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Thu, 21 Dec 2023 11:50:28 -0500 Subject: [PATCH] Bump to v1.5.5 (#786) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 1.5.4 → 1.5.5 --- .bumpversion.cfg | 2 +- HISTORY.md | 18 ++++++++++++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- strax/__init__.py | 2 +- 5 files changed, 23 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 328ad509c..d27c79bc4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.4 +current_version = 1.5.5 files = setup.py strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index bd317265d..16c3e50f3 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,21 @@ +1.5.5 / 2023-12-21 +--------------------- +* Update readthedocs configuration by @dachengx in https://github.com/AxFoundation/strax/pull/763 +* Proposal to use pre-commit for continuous integration by @dachengx in https://github.com/AxFoundation/strax/pull/762 +* Update authorship and copyright info by @JelleAalbers in https://github.com/AxFoundation/strax/pull/771 +* Guard hitlet entropy test from numerical errors by @JelleAalbers in https://github.com/AxFoundation/strax/pull/772 +* Deregister partially replaced multi-output plugins by @JelleAalbers in https://github.com/AxFoundation/strax/pull/775 +* Fix caching issue by @WenzDaniel in https://github.com/AxFoundation/strax/pull/768 +* Add chunk yielding plugin and tests by @WenzDaniel in https://github.com/AxFoundation/strax/pull/769 +* Avoid deprecated generated_jit by @JelleAalbers in https://github.com/AxFoundation/strax/pull/784 +* Also copy dps and remove redundant checks. by @WenzDaniel in https://github.com/AxFoundation/strax/pull/777 +* Add hot fix for copy_to_buffer by @WenzDaniel in https://github.com/AxFoundation/strax/pull/785 +* Upgrade compare-metadata function by @KaraMelih in https://github.com/AxFoundation/strax/pull/778 +* Add warning by @WenzDaniel in https://github.com/AxFoundation/strax/pull/776 + +**Full Changelog**: https://github.com/AxFoundation/strax/compare/v1.5.4...v1.5.5 + + 1.5.4 / 2023-09-19 --------------------- * Split compare_metadata into utils.compare_meta by @dachengx in https://github.com/AxFoundation/strax/pull/754 diff --git a/docs/source/conf.py b/docs/source/conf.py index 33d911b0b..5e6a34eb4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = "1.5.4" +version = "1.5.5" # The full version, including alpha/beta/rc tags. -release = "1.5.4" +release = "1.5.5" # 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 8bd94ea8a..b6413daba 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def open_requirements(path): setuptools.setup( name="strax", - version="1.5.4", + version="1.5.5", 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 4baa67d3e..0bce01266 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = "1.5.4" +__version__ = "1.5.5" # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you