diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 0a94231..48d11bd 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -1,7 +1,7 @@ # Modified from the original version of: # https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ -name: Publish 📦 to PyPI and TestPyPI +name: Publish 📦 to PyPI and GitHub Release on: push diff --git a/HISTORY.md b/HISTORY.md index 35fa65c..d7a6a66 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,11 @@ # Official releases +## v0.1.3 (2024-04-17) + +- First release to PyPI +- Add support for a `ConvergenceSheet` mass profile to both `coolest.template` and `coolest.api` +- Various fixes + ## v0.1.0 (2023-08-02) - Version corresponding to the JOSS publication diff --git a/coolest/__init__.py b/coolest/__init__.py index 0d8c43e..2ff748b 100644 --- a/coolest/__init__.py +++ b/coolest/__init__.py @@ -6,7 +6,7 @@ """ # Set the package release version -version_info = (0, 1, 2) +version_info = (0, 1, 3) __version__ = '.'.join(str(c) for c in version_info) # Set the package details