diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eff31c7..7957d4af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ +# v0.7.0 (4/10/2025) + +## Change-log + +Added ROC and Molchan diagrams for gridded forecasts (#254) +Added function to map the GEAR1 global forecast into arbitrary sub-regions and lower magnitude ranges (#249) +Added two new pyCSEP tutorials in english and spanish (#251) +Implementation of the Brier Score and its consistency test (#232) +Implementation and correction of M-test with resampling and addition of a new magnitude test based on the multinomial distribution (#268) +Fix and optimize catalog binning strategy by `bin1d_vec` (#270) +Github Actions and CI set for python >= 3.9 (#250) + +## Credits + +Toño Bayona (@bayonato89) +Marcus Herrmann (@mherrmann3) +Francesco Serafini (@Serra314) +Emanuele Biondini (@Biondini) +Pablo Iturrieta (@pabloitu) +Fabio Silva (@fabiolsilva) +Philip Maechling (@pjmaechling) +Bill Savran (@wsavran) + # v0.6.3 (2/1/2024) -# Change-log +## Change-log Added test for Winodws 10 on GitHub actions ([#244](https://github.com/SCECcode/pycsep/pull/244)) Removed shading in plotting fewer than 3 forecasts ([#247](https://github.com/SCECcode/pycsep/pull/247)) @@ -18,7 +41,7 @@ Fabio Silva (@fabiolsilva) # v0.6.2 (6/16/2023) -# Change-log +## Change-log Fixed an error-bar bug for normalized consistency plots ([#222](https://github.com/SCECcode/pycsep/pull/222)) 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)) Included CMT Catalog accessor ([#217](https://github.com/SCECcode/pycsep/pull/217)) @@ -31,7 +54,7 @@ Fabio Silva (@fabiolsilva) # v0.6.1 (12/12/2022) -# Change-log +## Change-log Added quadtree csv reader ([#186](https://github.com/SCECcode/pycsep/pull/186)) Non-Poissonian tests ([#189](https://github.com/SCECcode/pycsep/pull/189), diff --git a/CITATION.cff b/CITATION.cff index 5b01f9cd..1012258f 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -14,6 +14,6 @@ authors: given-names: Philip J. orcid: 0000-0002-9221-7068 title: "pyCSEP - Tools for Earthquake Forecast Developers" -version: 0.6.1 +version: 0.7.0 repository: https://github.com/SCECcode/pycsep date-released: 2021-04-20 diff --git a/CREDITS.md b/CREDITS.md index 678ccd16..5241006e 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -8,12 +8,14 @@ Contributors: * Kirsty Bayliss, University of Edinburgh * Jose Bayona, University of Bristol * Thomas Beutin, GFZ Potsdam -* Marcus Hermann, University of Naples 'Frederico II' +* Marcus Herrmann, University of Naples 'Frederico II' * Edric Pauk, Southern California Earthquake Center * Max Werner, University of Bristol * Danijel Schorlemmner, GFZ Potsdam * Philip Maechling, Southern California Earthquake Center * Fabio Silva, Southern Caifornia Earthquake Center * Kenny Graham, GNS Science +* Emanuele Biondini, University of Bologna +* Francesco Serafini, University of Bristol Thanks to everyone for all your contributions! diff --git a/codemeta.json b/codemeta.json index 7462c0b1..edb4486d 100644 --- a/codemeta.json +++ b/codemeta.json @@ -5,11 +5,11 @@ "codeRepository": "https://github.com/SCECcode/pycsep.git", "dateCreated": "2021-10-31", "datePublished": "2020-10-20", - "dateModified": "2024-02-01", + "dateModified": "2025-04-10", "downloadUrl": "https://github.com/SCECcode/pycsep", "issueTracker": "https://github.com/SCECcode/pycsep/issues", "name": "pyCSEP", - "version": "v0.6.3", + "version": "v0.7.0", "description": "The pyCSEP Toolkit helps earthquake forecast model developers evaluate their forecasts with the goal of understanding earthquake predictability.", "applicationCategory": "Seismology", "developmentStatus": "active", diff --git a/csep/_version.py b/csep/_version.py index 0620b272..12c96448 100644 --- a/csep/_version.py +++ b/csep/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.6.3" +__version__ = "0.7.0" diff --git a/docs/conf.py b/docs/conf.py index e3668953..abd696d2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,9 +28,9 @@ html_show_sphinx = False # The short X.Y version -version = 'v0.6' +version = 'v0.7' # The full version, including alpha/beta/rc tags -release = 'v0.6.3' +release = 'v0.7.0' # -- General configuration ---------------------------------------------------