From ebcb699fd85edb30b133fcb00e48dafa46faca4c Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Thu, 4 Apr 2024 21:13:07 -0400 Subject: [PATCH] Bump to v1.6.2 (#814) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 1.6.1 → 1.6.2 --- .bumpversion.cfg | 2 +- HISTORY.md | 15 +++++++++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- strax/__init__.py | 2 +- 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6d59023c5..f35fbeaeb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.1 +current_version = 1.6.2 files = setup.py strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 0adf87f26..6dc6015ca 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,18 @@ +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 +* Specifically install `lxml_html_clean` by @dachengx in https://github.com/AxFoundation/strax/pull/812 +* Add a function to purge unused configs by @dachengx in https://github.com/AxFoundation/strax/pull/800 +* Warn if user checks is_stored for plugin not always saved by @cfuselli in https://github.com/AxFoundation/strax/pull/796 +* Bump urllib3 from 2.2.0 to 2.2.1 in /extra_requirements by @dependabot in https://github.com/AxFoundation/strax/pull/808 +* Do not call `get_components` in `is_stored` by @dachengx in https://github.com/AxFoundation/strax/pull/813 + +New Contributors +* @cfuselli made their first contribution in https://github.com/AxFoundation/strax/pull/796 + +**Full Changelog**: https://github.com/AxFoundation/strax/compare/v1.6.1...v1.6.2 + + 1.6.1 / 2024-02-17 --------------------- * Remove a redundant function and fix some style by @dachengx in https://github.com/AxFoundation/strax/pull/795 diff --git a/docs/source/conf.py b/docs/source/conf.py index 45546bd81..6635a173b 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.1" +version = "1.6.2" # The full version, including alpha/beta/rc tags. -release = "1.6.1" +release = "1.6.2" # 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 38efa3bb3..870fdd943 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def open_requirements(path): setuptools.setup( name="strax", - version="1.6.1", + version="1.6.2", 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 ed110d1fa..ae4a95c93 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = "1.6.1" +__version__ = "1.6.2" # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you