Skip to content

Commit 1c81958

Browse files
authored
rel: Added changes for v0.7.0 (#278)
1 parent a74443d commit 1c81958

File tree

6 files changed

+35
-10
lines changed

6 files changed

+35
-10
lines changed

CHANGELOG.md

+26-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
1+
# v0.7.0 (4/10/2025)
2+
3+
## Change-log
4+
5+
Added ROC and Molchan diagrams for gridded forecasts (#254)
6+
Added function to map the GEAR1 global forecast into arbitrary sub-regions and lower magnitude ranges (#249)
7+
Added two new pyCSEP tutorials in english and spanish (#251)
8+
Implementation of the Brier Score and its consistency test (#232)
9+
Implementation and correction of M-test with resampling and addition of a new magnitude test based on the multinomial distribution (#268)
10+
Fix and optimize catalog binning strategy by `bin1d_vec` (#270)
11+
Github Actions and CI set for python >= 3.9 (#250)
12+
13+
## Credits
14+
15+
Toño Bayona (@bayonato89)
16+
Marcus Herrmann (@mherrmann3)
17+
Francesco Serafini (@Serra314)
18+
Emanuele Biondini (@Biondini)
19+
Pablo Iturrieta (@pabloitu)
20+
Fabio Silva (@fabiolsilva)
21+
Philip Maechling (@pjmaechling)
22+
Bill Savran (@wsavran)
23+
124
# v0.6.3 (2/1/2024)
225

3-
# Change-log
26+
## Change-log
427

528
Added test for Winodws 10 on GitHub actions ([#244](https://github.com/SCECcode/pycsep/pull/244))
629
Removed shading in plotting fewer than 3 forecasts ([#247](https://github.com/SCECcode/pycsep/pull/247))
@@ -18,7 +41,7 @@ Fabio Silva (@fabiolsilva)
1841

1942
# v0.6.2 (6/16/2023)
2043

21-
# Change-log
44+
## Change-log
2245
Fixed an error-bar bug for normalized consistency plots ([#222](https://github.com/SCECcode/pycsep/pull/222))
2346
Fixed handles URL exception or SSL verifications errors for both python 3.8 and 3.11 inclusive ([#231](https://github.com/SCECcode/pycsep/pull/231))
2447
Included CMT Catalog accessor ([#217](https://github.com/SCECcode/pycsep/pull/217))
@@ -31,7 +54,7 @@ Fabio Silva (@fabiolsilva)
3154

3255
# v0.6.1 (12/12/2022)
3356

34-
# Change-log
57+
## Change-log
3558
Added quadtree csv reader ([#186](https://github.com/SCECcode/pycsep/pull/186))
3659
Non-Poissonian tests
3760
([#189](https://github.com/SCECcode/pycsep/pull/189),

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ authors:
1414
given-names: Philip J.
1515
orcid: 0000-0002-9221-7068
1616
title: "pyCSEP - Tools for Earthquake Forecast Developers"
17-
version: 0.6.1
17+
version: 0.7.0
1818
repository: https://github.com/SCECcode/pycsep
1919
date-released: 2021-04-20

CREDITS.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ Contributors:
88
* Kirsty Bayliss, University of Edinburgh
99
* Jose Bayona, University of Bristol
1010
* Thomas Beutin, GFZ Potsdam
11-
* Marcus Hermann, University of Naples 'Frederico II'
11+
* Marcus Herrmann, University of Naples 'Frederico II'
1212
* Edric Pauk, Southern California Earthquake Center
1313
* Max Werner, University of Bristol
1414
* Danijel Schorlemmner, GFZ Potsdam
1515
* Philip Maechling, Southern California Earthquake Center
1616
* Fabio Silva, Southern Caifornia Earthquake Center
1717
* Kenny Graham, GNS Science
18+
* Emanuele Biondini, University of Bologna
19+
* Francesco Serafini, University of Bristol
1820

1921
Thanks to everyone for all your contributions!

codemeta.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"codeRepository": "https://github.com/SCECcode/pycsep.git",
66
"dateCreated": "2021-10-31",
77
"datePublished": "2020-10-20",
8-
"dateModified": "2024-02-01",
8+
"dateModified": "2025-04-10",
99
"downloadUrl": "https://github.com/SCECcode/pycsep",
1010
"issueTracker": "https://github.com/SCECcode/pycsep/issues",
1111
"name": "pyCSEP",
12-
"version": "v0.6.3",
12+
"version": "v0.7.0",
1313
"description": "The pyCSEP Toolkit helps earthquake forecast model developers evaluate their forecasts with the goal of understanding earthquake predictability.",
1414
"applicationCategory": "Seismology",
1515
"developmentStatus": "active",

csep/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.6.3"
1+
__version__ = "0.7.0"
22

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
html_show_sphinx = False
2929

3030
# The short X.Y version
31-
version = 'v0.6'
31+
version = 'v0.7'
3232
# The full version, including alpha/beta/rc tags
33-
release = 'v0.6.3'
33+
release = 'v0.7.0'
3434

3535

3636
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)