Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-cloup for openSUSE:Factory 
checked in at 2023-06-12 15:25:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cloup (Old)
 and      /work/SRC/openSUSE:Factory/.python-cloup.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-cloup"

Mon Jun 12 15:25:57 2023 rev:3 rq:1092273 version:2.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cloup/python-cloup.changes        
2023-05-15 16:54:52.732358018 +0200
+++ /work/SRC/openSUSE:Factory/.python-cloup.new.15902/python-cloup.changes     
2023-06-12 15:26:49.155182563 +0200
@@ -1,0 +2,10 @@
+Sun Jun 11 11:49:15 UTC 2023 - Dirk Müller <dmuel...@suse.com>
+
+- update to 2.1.1:
+  * Fix usage styling: the `heading` style was mistakenly applied
+    to the space after "Usage:". This was a problem when using
+    underlined headings: the space got underlined too. (fixed
+  * Full Changelog
+    https://github.com/janluke/cloup/compare/v2.1.0...v2.1.1
+
+-------------------------------------------------------------------

Old:
----
  cloup-2.1.0.tar.gz

New:
----
  cloup-2.1.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-cloup.spec ++++++
--- /var/tmp/diff_new_pack.rZPF4u/_old  2023-06-12 15:26:49.947187249 +0200
+++ /var/tmp/diff_new_pack.rZPF4u/_new  2023-06-12 15:26:50.007187604 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           python-cloup
-Version:        2.1.0
+Version:        2.1.1
 Release:        0
 Summary:        Option groups, constraints, subcommand sections and help 
themes for Click
 License:        BSD-3-Clause

++++++ cloup-2.1.0.tar.gz -> cloup-2.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cloup-2.1.0/PKG-INFO new/cloup-2.1.1/PKG-INFO
--- old/cloup-2.1.0/PKG-INFO    2023-05-15 03:54:24.000000000 +0200
+++ new/cloup-2.1.1/PKG-INFO    2023-06-03 16:20:39.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: cloup
-Version: 2.1.0
+Version: 2.1.1
 Summary: Adds features to Click: option groups, constraints, subcommand 
sections and help themes.
 Home-page: https://github.com/janLuke/cloup
 Author: Gianluca Gippetto
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cloup-2.1.0/cloup/_version.py 
new/cloup-2.1.1/cloup/_version.py
--- old/cloup-2.1.0/cloup/_version.py   2023-05-15 03:54:24.000000000 +0200
+++ new/cloup-2.1.1/cloup/_version.py   2023-06-03 16:20:39.000000000 +0200
@@ -1,4 +1,4 @@
 # file generated by setuptools_scm
 # don't change, don't track in version control
-__version__ = version = '2.1.0'
-__version_tuple__ = version_tuple = (2, 1, 0)
+__version__ = version = '2.1.1'
+__version_tuple__ = version_tuple = (2, 1, 1)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cloup-2.1.0/cloup/formatting/_formatter.py 
new/cloup-2.1.1/cloup/formatting/_formatter.py
--- old/cloup-2.1.0/cloup/formatting/_formatter.py      2023-05-15 
03:54:09.000000000 +0200
+++ new/cloup-2.1.1/cloup/formatting/_formatter.py      2023-06-03 
16:20:28.000000000 +0200
@@ -168,10 +168,10 @@
         self.buffer += strings
 
     def write_usage(
-        self, prog: str, args: str = "", prefix: Optional[str] = 'Usage:'
+        self, prog: str, args: str = "", prefix: Optional[str] = None
     ) -> None:
-        if prefix:
-            prefix = self.theme.heading(prefix + ' ')
+        prefix = "Usage:" if prefix is None else prefix
+        prefix = self.theme.heading(prefix) + " "
         prog = self.theme.invoked_command(prog)
         super().write_usage(prog, args, prefix)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cloup-2.1.0/cloup.egg-info/PKG-INFO 
new/cloup-2.1.1/cloup.egg-info/PKG-INFO
--- old/cloup-2.1.0/cloup.egg-info/PKG-INFO     2023-05-15 03:54:24.000000000 
+0200
+++ new/cloup-2.1.1/cloup.egg-info/PKG-INFO     2023-06-03 16:20:39.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: cloup
-Version: 2.1.0
+Version: 2.1.1
 Summary: Adds features to Click: option groups, constraints, subcommand 
sections and help themes.
 Home-page: https://github.com/janLuke/cloup
 Author: Gianluca Gippetto

Reply via email to