Philipp Hörist pushed to branch master at gajim / gajim
Commits:
bd6c84ba by Philipp Hörist at 2023-05-27T13:58:45+02:00
other: Update git hook
- - - - -
8986cb0c by Philipp Hörist at 2023-05-27T13:59:21+02:00
ci: Debian: Update control file
- - - - -
3 changed files:
- .githooks/update
- CONTRIBUTING.md
- debian/control
Changes:
=====================================
.githooks/update
=====================================
@@ -44,6 +44,9 @@ def get_commit_shas(start_ref: str, end_ref: str) ->
List[str]:
data = subprocess.check_output(['git', 'rev-list', arg])
text = data.decode()
text = text.strip()
+ if not text:
+ # Can happen if commits are deleted after force push
+ return []
return text.split('\n')
@@ -79,6 +82,7 @@ def main(args: Tuple[str, str, str]) -> None:
shas = get_commit_shas(old_ref, new_ref)
for sha in shas:
+ print('Check', sha)
subject = get_commit_subject(sha)
enforce_message_rules(subject)
=====================================
CONTRIBUTING.md
=====================================
@@ -51,6 +51,7 @@ # Commit Messages
- refactor (code was changed, but the end user will not notice)
- chore (reoccuring tasks which need to be done)
- release (only used for release commits)
+- revert (used when a commit needs to be reverted)
- other
Further the first letter after the tag must be upper case
=====================================
debian/control
=====================================
@@ -35,8 +35,8 @@ Depends:
python3 (>= 3.10),
python3-gi (>= 3.42.0),
python3-gi-cairo (>= 1.14.0~),
- python3-nbxmpp-nightly (>=20230405),
- python3-omemo-dr (>=20230503),
+ python3-nbxmpp-nightly (>=20230527),
+ python3-omemo-dr (>=20230527),
gir1.2-pango-1.0 (>= 1.50.0),
gir1.2-gtk-3.0 (>= 3.24.30),
gir1.2-gtksource-4,
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/754f916833f5deaaeea4acab275fb3d9e463f60b...8986cb0cfa9995c18f14e1b48a650b7bb47bc005
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/754f916833f5deaaeea4acab275fb3d9e463f60b...8986cb0cfa9995c18f14e1b48a650b7bb47bc005
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits