diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8cc2a0ba..21593d95 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.4 +current_version = 1.6.5 files = setup.py strax/__init__.py docs/source/conf.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index 7b4f1a11..49f09d75 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,15 @@ +1.6.5 / 2024-07-10 +--------------------- +* Single threaded alternative processor by @JelleAalbers in https://github.com/AxFoundation/strax/pull/773 +* Patch sharedarray version due to numpy updating by @dachengx in https://github.com/AxFoundation/strax/pull/850 +* Fix cache of Rechunker, zero chunk is not None by @dachengx in https://github.com/AxFoundation/strax/pull/849 +* Print writable storage by @dachengx in https://github.com/AxFoundation/strax/pull/851 +* Save multiple output when iteration stops in `PostOffice` by @dachengx in https://github.com/AxFoundation/strax/pull/852 +* Do not cache numba decorated `split_array` by @dachengx in https://github.com/AxFoundation/strax/pull/854 + +**Full Changelog**: https://github.com/AxFoundation/strax/compare/v1.6.4...v1.6.5 + + 1.6.4 / 2024-05-27 --------------------- * Minor fix on `_is_superrun` variable names by @dachengx in https://github.com/AxFoundation/strax/pull/837 diff --git a/docs/source/conf.py b/docs/source/conf.py index 653be9d0..6b5d2a6c 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.4" +version = "1.6.5" # The full version, including alpha/beta/rc tags. -release = "1.6.4" +release = "1.6.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 90c9c972..8c487e08 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def open_requirements(path): setuptools.setup( name="strax", - version="1.6.4", + version="1.6.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 18955168..e356b0ce 100644 --- a/strax/__init__.py +++ b/strax/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = "1.6.4" +__version__ = "1.6.5" # Glue the package together # See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you