Skip to content

Commit

Permalink
Prepare for v0.1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aymgal committed Apr 17, 2024
1 parent 8aa8002 commit babe678
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion coolest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit babe678

Please sign in to comment.