-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update HISTORY for the release * Bump version: 1.0.0 → 1.1.0 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update HISTORY.md --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
3c9a203
commit 9a6f2aa
Showing
4 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 1.0.0 | ||
current_version = 1.1.0 | ||
commit = True | ||
tag = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
1.1.0 / 2024-02-08 | ||
1.1.0 / 2024-03-20 | ||
------------------ | ||
* Cleanup and refactor configurations (#163) | ||
* Convert _photon_timings to integer values (#171) | ||
* Debug entry_stop (#166 and #170) | ||
* Fix a bug the pre-commit introduced and update the .git-blame-ignore-revs (#165) | ||
* pre-commit autoupdate (#164) | ||
* Make s2 AFT scaling optional (#161) | ||
* Move eventid cut into uproot data loading (#159) | ||
* Add flag to disable PMT afterpulsing (#158) | ||
* Add option to enable or disable the noise (#157) | ||
* Prevent empty instructions from locking NEST random seed (#156) | ||
* Change raw_records to save_when TARGET (#148) | ||
* Proposal to use pre-commit for continuous integration (#155) | ||
* Changes in map interpolation methods (#152) | ||
* Addition of truth plugins (#99) | ||
* Handle missing corrections_version and cleanup (#143) | ||
* Prevent empty instructions to lock NEST random seed (#146) | ||
* Increase size of string fields in geant4_interactions (#142) | ||
* No rechunking for microphysics summary & e_field NaNs to zero (#140) | ||
* Fix csv timing (#137) | ||
* Change electric field dtype to float32 (#135) | ||
* CSV input plugin update (#132) | ||
* Save electric field as float16 instead of int64 (#133) | ||
* Add missing badges and tests (#127) | ||
* Bring the documentation to readthedocs (#124) | ||
* Some code improvements for better performance (#125) | ||
* Simplify pytest and coveralls to shorten time usage (#123) | ||
|
||
1.0.0 / 2024-02-08 | ||
------------------- | ||
* First stable release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "1.0.0" | ||
__version__ = "1.1.0" | ||
|
||
from . import plugins | ||
from .plugins import * | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool] | ||
[tool.poetry] | ||
name = "xenon-fuse" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
description = "XENON Framework for Unified Simulations of Events" | ||
authors = [ | ||
"Henning Schulze Eißing, <[email protected]>", | ||
|