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

Commit 2e1ebe2

Browse files
authored
Bump to v0.7.0 (#343)
* Update HISTORY.md * Bump version: 0.6.5 → 0.6.6 * Use trusted publisher for pypi * Set pypi back * Simplify * Bump version: 0.6.6 → 0.7.0 * Update HISTORY.md
1 parent 858121d commit 2e1ebe2

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.5
2+
current_version = 0.7.0
33
files = setup.py pema/__init__.py
44
commit = True
55
tag = True

.github/workflows/pypi_install.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ jobs:
2929
with:
3030
user: ${{ secrets.token }}
3131
password: ${{ secrets.pypi_password }}
32-

.github/workflows/pytest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- python-version: "3.10"
4141
test: pytest_no_database
4242
env:
43-
HAVE_ACCESS_TO_SECTETS: ${{ secrets.RUNDB_API_URL }}
43+
HAVE_ACCESS_TO_SECRETS: ${{ secrets.RUNDB_API_URL }}
4444
steps:
4545
# Setup and installation
4646
- name: Setup python
@@ -76,7 +76,7 @@ jobs:
7676
- name: Create pre-apply function file
7777
# In case we do not have database. We need to make a local file for
7878
# The pre_apply_function (see #559).
79-
if: env.HAVE_ACCESS_TO_SECTETS == null || matrix.test == 'pytest_no_database'
79+
if: env.HAVE_ACCESS_TO_SECRETS == null || matrix.test == 'pytest_no_database'
8080
run: |
8181
bash .github/scripts/create_pre_apply_function.sh $HOME
8282
@@ -90,14 +90,14 @@ jobs:
9090
# Make the coverage report and upload
9191
env:
9292
NUMBA_DISABLE_JIT: 1
93-
if: matrix.test == 'coveralls' && env.HAVE_ACCESS_TO_SECTETS != null
93+
if: matrix.test == 'coveralls' && env.HAVE_ACCESS_TO_SECRETS != null
9494
run: |
9595
pytest --cov pema -v --nbmake notebooks/Getting_started_with_Pema.ipynb --durations 0 --nb-coverage --nbmake-timeout=3600
9696
pytest --cov pema --cov-append -v --durations 0
9797
- name: Coveralls
9898
env:
9999
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
100-
if: matrix.test != 'pytest_no_database' && env.HAVE_ACCESS_TO_SECTETS != null
100+
if: matrix.test != 'pytest_no_database' && env.HAVE_ACCESS_TO_SECRETS != null
101101
run: coveralls --service=github
102102
# Done
103103
- name: goodbye

HISTORY.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,53 @@
1+
0.7.0 / 2024-01-15
2+
------------------
3+
* `np.float` is deprecated by @dachengx in https://github.com/XENONnT/pema/pull/341
4+
* Update RTD configuration by @dachengx in https://github.com/XENONnT/pema/pull/342
5+
* Move simulation context to wfsim by @dachengx in https://github.com/XENONnT/pema/pull/344
6+
7+
**Full Changelog**: https://github.com/XENONnT/pema/compare/v0.6.5...v0.7.0
8+
9+
110
0.6.5 / 2023-09-12
211
------------------
3-
### What's Changed
412
* Trying to fix touching_windows bug by @FaroutYLq in https://github.com/XENONnT/pema/pull/333
513

14+
615
0.6.4 / 2022-10-18
716
------------------
817
* Add test for event matching customization by @JoranAngevaare in https://github.com/XENONnT/pema/pull/241
918
* Update ax by @JoranAngevaare in https://github.com/XENONnT/pema/pull/259
1019

11-
1220
**Full Changelog**: https://github.com/XENONnT/pema/compare/v0.6.3...v0.6.4
1321

22+
1423
0.6.3 / 2022-06-08
1524
------------------
16-
### What's Changed
1725
* allow kwargs to context by @JoranAngevaare in https://github.com/XENONnT/pema/pull/227
1826
* Test notebooks by @JoranAngevaare in https://github.com/XENONnT/pema/pull/228
1927
* Add plotting tweak by @JoranAngevaare in https://github.com/XENONnT/pema/pull/233
2028
* Bump nbsphinx from 0.8.8 to 0.8.9 in /extra_requirements by @dependabot in https://github.com/XENONnT/pema/pull/230
2129
* Bump strax from 1.2.2 to 1.2.3 in /extra_requirements by @dependabot in https://github.com/XENONnT/pema/pull/231
2230
* Bump straxen from 1.7.1 to 1.8.1 in /extra_requirements by @dependabot in https://github.com/XENONnT/pema/pull/232
2331

24-
2532
**Full Changelog**: https://github.com/XENONnT/pema/compare/v0.6.2...v0.6.3
2633

34+
2735
0.6.0 / 2022-05-30
2836
------------------
29-
## What's Changed
3037
* simplify matching - keep multiple columns and fix + test chunking artefacts by @JoranAngevaare in https://github.com/XENONnT/pema/pull/225
3138

32-
3339
**Full Changelog**: https://github.com/XENONnT/pema/compare/v0.5.2...v0.6.0
3440

41+
3542
0.5.0 / 2022-05-29
3643
------------------
37-
## What's Changed
3844
* Extend match_acceptance_extended with peak level info by @JoranAngevaare in https://github.com/XENONnT/pema/pull/224
3945

40-
4146
**Full Changelog**: https://github.com/XENONnT/pema/compare/v0.4.4...v0.5.0
4247

48+
4349
0.4.4 / 2022-05-29
4450
------------------
45-
## What's Changed
4651
* Update requirements by @JoranAngevaare in https://github.com/XENONnT/pema/pull/211
4752
* Bump typing-extensions from 4.1.1 to 4.2.0 in /extra_requirements by @dependabot in https://github.com/XENONnT/pema/pull/212
4853
* Bump straxen from 1.6.1 to 1.6.2 in /extra_requirements by @dependabot in https://github.com/XENONnT/pema/pull/214
@@ -54,14 +59,11 @@
5459
* cmt_version by @JoranAngevaare in https://github.com/XENONnT/pema/pull/222
5560
* test with wfsim pre release by @JoranAngevaare in https://github.com/XENONnT/pema/pull/223
5661

57-
5862
**Full Changelog**: https://github.com/XENONnT/pema/compare/v0.4.3...v0.4.4
5963

6064

6165
0.4.3 / 2022-04-12
6266
------------------
63-
64-
## What's Changed
6567
* Bump utilix from 0.6.6 to 0.6.7 in /extra_requirements by @dependabot in https://github.com/XENONnT/pema/pull/194
6668
* Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/XENONnT/pema/pull/193
6769
* Bump xarray from 0.21.1 to 2022.3.0 in /extra_requirements by @dependabot in https://github.com/XENONnT/pema/pull/192
@@ -77,9 +79,9 @@
7779
* WFSim bump by @JoranAngevaare in https://github.com/XENONnT/pema/pull/208
7880
* Fix logger classes in pema by @JoranAngevaare in https://github.com/XENONnT/pema/pull/210
7981

80-
8182
**Full Changelog**: https://github.com/XENONnT/pema/compare/v0.4.2...v0.4.3
8283

84+
8385
0.4.2 / 2022-03-02
8486
------------------
8587
- ignore raises on testing (#189)

pema/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.6.5'
1+
__version__ = '0.7.0'
22

33
from .matching import *
44
from .match_plugins import *

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def open_requirements(path):
2121
doc_requires = open_requirements('extra_requirements/requirements-docs.txt')
2222

2323
setuptools.setup(name='pema',
24-
version='0.6.5',
24+
version='0.7.0',
2525
description='Peak matching for XENON simulations',
2626
author='Joran Angevaare',
2727
url='https://github.com/XENONnT/peakmatching',

0 commit comments

Comments
 (0)