Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Bump to v1.2.0 #431

Merged
merged 2 commits into from
Jan 16, 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
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[bumpversion]
current_version = 1.1.0
current_version = 1.2.0
files = setup.py wfsim/__init__.py
commit = True
tag = True

5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v1.2.0 / 2024-01-16
===================
* Update readthedocs configuration (#426)
* Move all simulation contexts to WFSim (#430)

v1.1.0 / 2023-09-08
===================
* Change photoionization file format to avoid pkl (#411)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setuptools.setup(
name='wfsim',
version='1.1.0',
version='1.2.0',
description='XENONnT Waveform simulator',
author='Wfsim contributors, the XENON collaboration',
url='https://github.com/XENONnT/wfsim',
Expand Down
2 changes: 1 addition & 1 deletion wfsim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.1.0"
__version__ = "1.2.0"

from .core.afterpulse import *
from .core.pulse import *
Expand Down