diff --git a/CHANGELOG.md b/CHANGELOG.md index 28c2c85f..3698b331 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v0.6.2 (6/16/2023) + +# 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)) +Added NZ catalog reader ([#213](https://github.com/SCECcode/pycsep/pull/213)) + +## Credits +Pablo Iturrieta (@pabloitu) +Kenny Graham (@KennyGraham1) +Fabio Silva (@fabiolsilva) + # v0.6.1 (12/12/2022) # Change-log diff --git a/CREDITS.md b/CREDITS.md index ac4d1cbd..678ccd16 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -13,5 +13,7 @@ Contributors: * 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 Thanks to everyone for all your contributions! diff --git a/codemeta.json b/codemeta.json index c8f61d30..76148cb7 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": "2022-01-25", + "dateModified": "2023-06-16", "downloadUrl": "https://github.com/SCECcode/pycsep", "issueTracker": "https://github.com/SCECcode/pycsep/issues", "name": "pyCSEP", - "version": "v0.6.1", + "version": "v0.6.2", "description": "The pyCSEP Toolkit helps earthquake forecast model developers evaluate their forecasts with the goal of understanding earthquake predictability.", "applicationCategory": "Seismology", "developmentStatus": "active", @@ -37,9 +37,9 @@ "author": [ { "@type": "Person", - "givenName": "William", - "familyName": "Savran", - "email": "wsavran@usc.edu", + "givenName": "Fabio", + "familyName": "Silva", + "email": "fsilva@usc.edu", "affiliation": { "@type": "Organization", "name": "University of Southern California" diff --git a/csep/_version.py b/csep/_version.py index 37416fa9..9614f306 100644 --- a/csep/_version.py +++ b/csep/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.6.1" +__version__ = "0.6.2" diff --git a/docs/conf.py b/docs/conf.py index 83628248..0a8a1366 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,7 +30,7 @@ # The short X.Y version version = 'v0.6' # The full version, including alpha/beta/rc tags -release = 'v0.6.1' +release = 'v0.6.2' # -- General configuration ---------------------------------------------------