From 132e4e91f6f445c87741edfc863189da61213697 Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Thu, 1 Feb 2024 11:11:44 -0800 Subject: [PATCH] Added changes for 0.6.3, bumped version number --- CHANGELOG.md | 28 +++++++++++++++++++++++----- codemeta.json | 4 ++-- csep/_version.py | 2 +- docs/conf.py | 2 +- 4 files changed, 27 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3698b331..0eff31c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,32 @@ +# v0.6.3 (2/1/2024) + +# 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)) +Fixed tutorial for plot_customizations ([#242](https://github.com/SCECcode/pycsep/pull/242)) +Fixed negative binomial consistency plots now have the correct boundaries ([#245](https://github.com/SCECcode/pycsep/pull/245)) +Changed environment build of pypi-publish from miniconda to micromamba ([#238](https://github.com/SCECcode/pycsep/pull/238)) +Fixed negative timestamps parsing for Windows ([#230](https://github.com/SCECcode/pycsep/pull/230)) +Fixed writing catalog csv files on Windows ([#235](https://github.com/SCECcode/pycsep/pull/235)) + +## Credits +Pablo Iturrieta (@pabloitu) +William Savran (@wsavran) +Philip Maechling (@pjmaechling) +Fabio Silva (@fabiolsilva) + # 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)) +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) +Pablo Iturrieta (@pabloitu) +Kenny Graham (@KennyGraham1) Fabio Silva (@fabiolsilva) # v0.6.1 (12/12/2022) diff --git a/codemeta.json b/codemeta.json index 76148cb7..7462c0b1 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": "2023-06-16", + "dateModified": "2024-02-01", "downloadUrl": "https://github.com/SCECcode/pycsep", "issueTracker": "https://github.com/SCECcode/pycsep/issues", "name": "pyCSEP", - "version": "v0.6.2", + "version": "v0.6.3", "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 9614f306..0620b272 100644 --- a/csep/_version.py +++ b/csep/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.6.2" +__version__ = "0.6.3" diff --git a/docs/conf.py b/docs/conf.py index 0a8a1366..208045ef 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.2' +release = 'v0.6.3' # -- General configuration ---------------------------------------------------