autopub 1.0.0a42__tar.gz → 1.0.0a44__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: autopub
3
- Version: 1.0.0a42
3
+ Version: 1.0.0a44
4
4
  Summary: Automatic package release upon pull request merge
5
5
  Home-page: https://github.com/autopub/autopub
6
6
  Author: Justin Mayer
@@ -399,7 +399,11 @@ class GithubPlugin(AutopubPlugin):
399
399
  def _create_release(
400
400
  self, release_info: ReleaseInfo, discussion_url: Optional[str] = None
401
401
  ) -> None:
402
- message = self._get_release_message(release_info, discussion_url=discussion_url)
402
+ message = self._get_release_message(
403
+ release_info,
404
+ include_release_info=True,
405
+ discussion_url=discussion_url,
406
+ )
403
407
 
404
408
  release = self.repository.create_git_release(
405
409
  tag=release_info.version,
@@ -408,7 +412,7 @@ class GithubPlugin(AutopubPlugin):
408
412
  )
409
413
 
410
414
  for asset in pathlib.Path("dist").glob("*"):
411
- if asset.suffix in [".tar.gz", ".whl"]:
415
+ if asset.suffix in [".gz", ".whl"]:
412
416
  release.upload_asset(str(asset))
413
417
 
414
418
  def post_publish(self, release_info: ReleaseInfo) -> None:
@@ -424,4 +428,4 @@ class GithubPlugin(AutopubPlugin):
424
428
  if self.config.create_discussions:
425
429
  discussion_url = self._create_discussion(release_info)
426
430
 
427
- self._create_release(release_info, discussion_url)
431
+ self._create_release(release_info, discussion_url=discussion_url)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  requires-python = ">=3.9.0,<4.0"
3
- version = "1.0.0-alpha.42"
3
+ version = "1.0.0-alpha.44"
4
4
  name = "autopub"
5
5
  description = "Automatic package release upon pull request merge"
6
6
  authors = [
@@ -25,7 +25,7 @@ classifiers = [
25
25
  repository = "https://github.com/autopub/autopub"
26
26
  include = ["autopub/py.typed"]
27
27
  name = "autopub"
28
- version = "1.0.0-alpha.42"
28
+ version = "1.0.0-alpha.44"
29
29
  description = "Automatic package release upon pull request merge"
30
30
  authors = [
31
31
  "Justin Mayer <entroP@gmail.com>",
File without changes
File without changes
File without changes