Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v1.6.1 #806

Merged
merged 2 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.0
current_version = 1.6.1
files = setup.py strax/__init__.py docs/source/conf.py
commit = True
tag = True
12 changes: 12 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
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.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.
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.0",
version="1.6.1",
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.0"
__version__ = "1.6.1"

# Glue the package together
# See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you
Expand Down