Skip to content

Commit b9da2ee

Browse files
Merge pull request #9 from Christopher-K-Long/release
Release 1.1.8
2 parents d5daaf8 + e3a43b0 commit b9da2ee

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/release-and-publish-to-pypi.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
env:
100100
GITHUB_TOKEN: ${{ github.token }}
101101
run: |
102-
RELEASE_NOTES=$(cat ChangeLog.md | grep -Pzo '(?<=##\sRelease\s${{ steps.version.outputs.VERSION }})[\S\s]*(?=##|$)' | tr -d '\0')
102+
RELEASE_NOTES=$(cat ChangeLog.md | grep -Pzo '(?<=##\sRelease\s${{ steps.version.outputs.VERSION }})[\S\s]*?(?=##|$)' | tr -d '\0')
103103
if [ -z "$RELEASE_NOTES" ]; then
104104
echo "No release notes found."
105105
exit 1
@@ -112,6 +112,5 @@ jobs:
112112
# `dist/` contains the built packages, and the
113113
# sigstore-produced signatures and certificates.
114114
run: >-
115-
gh release upload
116-
"$GITHUB_REF_NAME" dist/**
115+
gh release upload "v${{ steps.version.outputs.VERSION }}" dist/**
117116
--repo "$GITHUB_REPOSITORY"

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ keywords:
2929
- load
3030
- loading
3131
license: Apache-2.0
32-
version: 1.1.7
32+
version: 1.1.8
3333
date-released: '2025-04-17'

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# [saveable-objects](README.md) Change Log
22

3+
## Release 1.1.8
4+
5+
Fixed bug where artifacts would not upload to the newly created GitHub release.
6+
37
## Release 1.1.7
48

59
- GitHub workflow release generation bug.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ Source code can be found at: [https://github.com/Christopher-K-Long/saveable-obj
3232

3333
## Version and Changes
3434

35-
The current version is [`1.1.7`](ChangeLog.md#release-117). Please see the [Change Log](ChangeLog.md) for more
35+
The current version is [`1.1.8`](ChangeLog.md#release-118). Please see the [Change Log](ChangeLog.md) for more
3636
details.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "saveable-objects"
7-
version = "1.1.7"
7+
version = "1.1.8"
88
authors = [
99
{ name="Christopher_K._Long", email="ckl45@cam.ac.uk" },
1010
]

0 commit comments

Comments
 (0)