Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/release-and-publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
RELEASE_NOTES=$(cat ChangeLog.md | grep -Pzo '(?<=##\sRelease\s${{ steps.version.outputs.VERSION }})[\S\s]*(?=##|$)' | tr -d '\0')
RELEASE_NOTES=$(cat ChangeLog.md | grep -Pzo '(?<=##\sRelease\s${{ steps.version.outputs.VERSION }})[\S\s]*?(?=##|$)' | tr -d '\0')
if [ -z "$RELEASE_NOTES" ]; then
echo "No release notes found."
exit 1
Expand All @@ -112,6 +112,5 @@ jobs:
# `dist/` contains the built packages, and the
# sigstore-produced signatures and certificates.
run: >-
gh release upload
"$GITHUB_REF_NAME" dist/**
gh release upload "v${{ steps.version.outputs.VERSION }}" dist/**
--repo "$GITHUB_REPOSITORY"
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ keywords:
- load
- loading
license: Apache-2.0
version: 1.1.7
version: 1.1.8
date-released: '2025-04-17'
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# [saveable-objects](README.md) Change Log

## Release 1.1.8

Fixed bug where artifacts would not upload to the newly created GitHub release.

## Release 1.1.7

- GitHub workflow release generation bug.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ Source code can be found at: [https://github.com/Christopher-K-Long/saveable-obj

## Version and Changes

The current version is [`1.1.7`](ChangeLog.md#release-117). Please see the [Change Log](ChangeLog.md) for more
The current version is [`1.1.8`](ChangeLog.md#release-118). Please see the [Change Log](ChangeLog.md) for more
details.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "saveable-objects"
version = "1.1.7"
version = "1.1.8"
authors = [
{ name="Christopher_K._Long", email="ckl45@cam.ac.uk" },
]
Expand Down