Philipp Hörist pushed to branch master at gajim / python-nbxmpp


Commits:
2b49dcca by lovetox at 2022-05-18T20:09:52+02:00
chore: Add config files for git-chglog

- - - - -
5367dc30 by lovetox at 2022-05-18T20:11:37+02:00
chore: Update ChangeLog

- - - - -
319eb623 by lovetox at 2022-05-18T20:11:37+02:00
release: 3.0.2

- - - - -


5 changed files:

- + .chglog/CHANGELOG.tpl.md
- + .chglog/config.yml
- ChangeLog
- nbxmpp/__init__.py
- setup.cfg


Changes:

=====================================
.chglog/CHANGELOG.tpl.md
=====================================
@@ -0,0 +1,44 @@
+{{ if .Versions -}}
+<a name="unreleased"></a>
+## [Unreleased]
+
+{{ if .Unreleased.CommitGroups -}}
+{{ range .Unreleased.CommitGroups -}}
+{{ .Title }}
+
+{{ range .Commits -}}
+  * {{if .Refs}}{{range .Refs}}#{{.Ref}} {{end}}{{end}}{{ if .Scope }}**{{ 
.Scope }}:** {{ end }}{{ .Subject }}
+{{ end }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
+
+
+{{ range .Versions }}
+<a name="{{ .Tag.Name }}"></a>
+## {{ if .Tag.Previous }}[{{ .Tag.Name }}]{{ else }}{{ .Tag.Name }}{{ end }} - 
{{ datetime "2006-01-02" .Tag.Date }}
+{{ range .CommitGroups -}}
+{{ .Title }}
+{{ range .Commits -}}
+  * {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
+{{ end }}
+{{ end -}}
+
+{{- if .NoteGroups -}}
+{{ range .NoteGroups -}}
+{{ .Title }}
+{{ range .Notes }}
+{{ .Body }}
+{{ end }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
+
+{{- if .Versions }}
+[Unreleased]: {{ .Info.RepositoryURL }}/compare/{{ $latest := index .Versions 
0 }}{{ $latest.Tag.Name }}...HEAD
+{{ range .Versions -}}
+{{ if .Tag.Previous -}}
+[{{ .Tag.Name }}]: {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name 
}}...{{ .Tag.Name }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
\ No newline at end of file


=====================================
.chglog/config.yml
=====================================
@@ -0,0 +1,33 @@
+style: gitlab
+template: CHANGELOG.tpl.md
+info:
+  title: CHANGELOG
+  repository_url: https://dev.gajim.org/gajim/python-nbxmpp
+options:
+  commits:
+    filters:
+      Type:
+        - feat
+        - perf
+        - fix
+  commit_groups:
+    sort_by: Custom
+    title_order:
+      - feat
+      - perf
+      - fix
+    title_maps:
+      feat: New
+      perf: Performance Improvements
+      fix: Bug Fixes
+  header:
+    pattern: "^(\\w*)\\:\\s(.*)$"
+    pattern_maps:
+      - Type
+      - Subject
+  issues:
+    prefix:
+      - "#"
+  refs:
+    actions:
+      - Fixes


=====================================
ChangeLog
=====================================
@@ -1,3 +1,12 @@
+python-nbxmpp 3.0.2 (18 May 2022)
+
+ Bug Fixes
+ 
+ * Roster: Raise exception if a full jid is found
+ * AdHoc: Don’t raise on empty nodes
+ * Roster: Don’t fail when no roster attribute is found
+ * #126 Remove redundant wheel dependency
+
 python-nbxmpp 3.0.1 (09 May 2022)
 
  Bugfix


=====================================
nbxmpp/__init__.py
=====================================
@@ -4,4 +4,4 @@ from .protocol import *
 
 gi.require_version('Soup', '2.4')
 
-__version__: str = '3.0.1'
+__version__: str = '3.0.2'


=====================================
setup.cfg
=====================================
@@ -1,6 +1,6 @@
 [metadata]
 name = nbxmpp
-version = 3.0.1
+version = 3.0.2
 description = XMPP Library
 author = Yann Leboulanger, Philipp Hoerist
 author_email = gajim-de...@gajim.org



View it on GitLab: 
https://dev.gajim.org/gajim/python-nbxmpp/-/compare/e81b1dae9f197ca3bc7ffee95c7e2d6e8ec1fc19...319eb623e7bc72483f4a37d1445fae4a492a6b53

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/python-nbxmpp/-/compare/e81b1dae9f197ca3bc7ffee95c7e2d6e8ec1fc19...319eb623e7bc72483f4a37d1445fae4a492a6b53
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
Commits@gajim.org
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to