Skip to content

Commit

Permalink
Merge e5927d9 into d45f798
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx committed Apr 30, 2024
2 parents d45f798 + e5927d9 commit 3fac956
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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
22 changes: 22 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion strax/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 3fac956

Please sign in to comment.