autopub 1.0.0a22__tar.gz → 1.0.0a24__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {autopub-1.0.0a22 → autopub-1.0.0a24}/PKG-INFO +2 -1
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/__init__.py +20 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/pyproject.toml +3 -2
- {autopub-1.0.0a22 → autopub-1.0.0a24}/LICENSE +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/cli/__init__.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/exceptions.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/plugin_loader.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/plugins/__init__.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/plugins/bump_version.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/plugins/git.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/plugins/pdm.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/plugins/poetry.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/plugins/update_changelog.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/plugins/uv.py +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/py.typed +0 -0
- {autopub-1.0.0a22 → autopub-1.0.0a24}/autopub/types.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: autopub
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.0a24
|
4
4
|
Summary: Automatic package release upon pull request merge
|
5
5
|
Home-page: https://github.com/autopub/autopub
|
6
6
|
Author: Justin Mayer
|
@@ -18,5 +18,6 @@ Requires-Dist: pydantic (>=2.10.5,<3.0.0)
|
|
18
18
|
Requires-Dist: python-frontmatter (>=1.1.0,<2.0.0)
|
19
19
|
Requires-Dist: rich (>=13.9.4,<14.0.0)
|
20
20
|
Requires-Dist: tomlkit (>=0.13.2,<0.14.0)
|
21
|
+
Requires-Dist: typer (>=0.15.1,<0.16.0)
|
21
22
|
Project-URL: Issue Tracker, https://github.com/autopub/autopub/issues
|
22
23
|
Project-URL: Repository, https://github.com/autopub/autopub
|
@@ -2,6 +2,8 @@ from __future__ import annotations
|
|
2
2
|
|
3
3
|
import hashlib
|
4
4
|
import json
|
5
|
+
import subprocess
|
6
|
+
import textwrap
|
5
7
|
from functools import cached_property
|
6
8
|
from pathlib import Path
|
7
9
|
from typing import Iterable, Mapping, TypeAlias
|
@@ -151,6 +153,8 @@ class Autopub:
|
|
151
153
|
plugin.post_publish(release_info)
|
152
154
|
|
153
155
|
self._delete_release_file()
|
156
|
+
self._commit()
|
157
|
+
self._push()
|
154
158
|
|
155
159
|
def validate_config(self) -> None:
|
156
160
|
errors: dict[str, ValidationError] = {}
|
@@ -167,6 +171,22 @@ class Autopub:
|
|
167
171
|
def _delete_release_file(self) -> None:
|
168
172
|
self.release_file.unlink(missing_ok=True)
|
169
173
|
|
174
|
+
def _commit(self) -> None:
|
175
|
+
commit_message = textwrap.dedent(
|
176
|
+
f"""
|
177
|
+
Release {self.release_info.version}
|
178
|
+
|
179
|
+
{self.release_info.release_notes}
|
180
|
+
|
181
|
+
[skip ci]
|
182
|
+
"""
|
183
|
+
)
|
184
|
+
|
185
|
+
subprocess.run(["git", "commit", "-m", commit_message])
|
186
|
+
|
187
|
+
def _push(self) -> None:
|
188
|
+
subprocess.run(["git", "push"])
|
189
|
+
|
170
190
|
def _write_artifact(self, release_info: ReleaseInfo) -> None:
|
171
191
|
data = {
|
172
192
|
**release_info.dict(),
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
requires-python = ">=3.9.0,<4.0"
|
3
|
-
version = "1.0.0-alpha.
|
3
|
+
version = "1.0.0-alpha.24"
|
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.
|
28
|
+
version = "1.0.0-alpha.24"
|
29
29
|
description = "Automatic package release upon pull request merge"
|
30
30
|
authors = [
|
31
31
|
"Justin Mayer <entroP@gmail.com>",
|
@@ -42,6 +42,7 @@ tomlkit = "^0.13.2"
|
|
42
42
|
pydantic = "^2.10.5"
|
43
43
|
dunamai = "^1.23.0"
|
44
44
|
rich = "^13.9.4"
|
45
|
+
typer = "^0.15.1"
|
45
46
|
|
46
47
|
|
47
48
|
[tool.poetry.dev-dependencies]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|