From 997edfc995aff35fe4c8a4473d6d998b00d62615 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Wed, 21 Feb 2024 20:32:49 +0800 Subject: [PATCH] Bump to v1.6.1 (#806) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 1.6.0 → 1.6.1 --- .bumpversion.cfg | 2 +- HISTORY.md | 12 ++++++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- strax/__init__.py | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1d6617e6a..6d59023c5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0 +current_version = 1.6.1 files = setup.py strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 6e2086e79..0adf87f26 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,15 @@ +1.6.1 / 2024-02-17 +--------------------- +* Remove a redundant function and fix some style by @dachengx in https://github.com/AxFoundation/strax/pull/795 +* Find the frontends which stored the targets by @dachengx in https://github.com/AxFoundation/strax/pull/802 +* Simpler chunk length check, avoid recursion limit crash by @JelleAalbers in https://github.com/AxFoundation/strax/pull/803 +* Deprecate the usage of `XENONnT/ax_env` by @dachengx in https://github.com/AxFoundation/strax/pull/804 +* Add a function to directly load file from strax folder by @dachengx in https://github.com/AxFoundation/strax/pull/801 + + +**Full Changelog**: https://github.com/AxFoundation/strax/compare/v1.6.0...v1.6.1 + + 1.6.0 / 2024-01-15 --------------------- * `np.float` is deprecated by @dachengx in https://github.com/AxFoundation/strax/pull/789 diff --git a/docs/source/conf.py b/docs/source/conf.py index 5faf89d91..45546bd81 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.0" +version = "1.6.1" # The full version, including alpha/beta/rc tags. -release = "1.6.0" +release = "1.6.1" # 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 0a515239f..38efa3bb3 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def open_requirements(path): setuptools.setup( name="strax", - version="1.6.0", + version="1.6.1", 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 0723c3814..ed110d1fa 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = "1.6.0" +__version__ = "1.6.1" # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you