Skip to content

Commit

Permalink
Also skip empty prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Jun 30, 2023
1 parent f6d3934 commit 9df40b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galaxy_release_util/point_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def datetime_date(self) -> datetime.datetime:

@property
def is_empty_devrelease(self):
return self.version.is_devrelease and not self.changes
return (self.version.is_devrelease or self.version.is_prerelease) and not self.changes

def __str__(self) -> str:
change_lines = "\n".join(self.changes)
Expand Down

0 comments on commit 9df40b8

Please sign in to comment.