diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ac271da..f7e9a083 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v0.5.1 (11/15/2021) + +## Change-log +Modified plot_spatial_dataset and plot_catalog to correctly handle Global plots (#150) +Updated plot_customizations example in the docs (#150) +Added DOI badge and conda downloads badge (#156) +Added plotting args to catalog evaluation plots (#154) +Add option to ignore colorbar in spatial dataset plots (#154) + +## Credits +William Savran (@wsavran) +Pablo Iturrieta (@pabloitu) + # v0.5.0 (11/03/2021) ## Change-log diff --git a/codemeta.json b/codemeta.json index 0a94ccd7..9b75e1f5 100644 --- a/codemeta.json +++ b/codemeta.json @@ -9,7 +9,7 @@ "downloadUrl": "https://github.com/sceccode/pycsep", "issueTracker": "https://github.com/sceccode/pycsep/issues", "name": "pyCSEP", - "version": "0.5.0", + "version": "v0.5.1", "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 4893b85a..95bf5dc1 100644 --- a/csep/_version.py +++ b/csep/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.5.0" +__version__ = "0.5.1" diff --git a/docs/conf.py b/docs/conf.py index 88c3fac9..cff1e1c2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,7 +30,7 @@ # The short X.Y version version = 'v0.5' # The full version, including alpha/beta/rc tags -release = 'v0.5.0' +release = 'v0.5.1' # -- General configuration ---------------------------------------------------