Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-catalogus for
openSUSE:Factory checked in at 2026-08-31 15:56:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-catalogus (Old)
and /work/SRC/openSUSE:Factory/.python-catalogus.new.1265 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-catalogus"
Mon Aug 31 15:56:38 2026 rev:2 rq:1374771 version:0.1.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-catalogus/python-catalogus.changes
2026-05-14 21:44:07.665481367 +0200
+++
/work/SRC/openSUSE:Factory/.python-catalogus.new.1265/python-catalogus.changes
2026-08-31 15:56:58.743559386 +0200
@@ -1,0 +2,7 @@
+Sun Aug 30 23:25:46 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Update to 0.1.2:
+ * Fix README code-block formatting.
+ * Make setup.py executable.
+
+-------------------------------------------------------------------
Old:
----
catalogus-0.1.0.tar.gz
New:
----
catalogus-0.1.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-catalogus.spec ++++++
--- /var/tmp/diff_new_pack.OZZtNF/_old 2026-08-31 15:57:00.803631259 +0200
+++ /var/tmp/diff_new_pack.OZZtNF/_new 2026-08-31 15:57:00.808631433 +0200
@@ -17,7 +17,7 @@
Name: python-catalogus
-Version: 0.1.0
+Version: 0.1.2
Release: 0
Summary: Python classes for name-to-object registry-like support
License: GPL-2.0-or-later
++++++ catalogus-0.1.0.tar.gz -> catalogus-0.1.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/catalogus-0.1.0/README.md
new/catalogus-0.1.2/README.md
--- old/catalogus-0.1.0/README.md 2025-09-02 23:51:10.000000000 +0200
+++ new/catalogus-0.1.2/README.md 2026-08-28 11:54:42.000000000 +0200
@@ -27,13 +27,13 @@
my_registry = Registry()
# Register objects directly
-my_registry.register('item1', some_object)
+my_registry.register("item1", some_object)
# Register with lazy loading
-my_registry.register_lazy('item2', 'my.module', 'MyClass')
+my_registry.register_lazy("item2", "my.module", "MyClass")
# Retrieve objects
-obj = my_registry.get('item1')
+obj = my_registry.get("item1")
```
## Features
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/catalogus-0.1.0/pyproject.toml
new/catalogus-0.1.2/pyproject.toml
--- old/catalogus-0.1.0/pyproject.toml 2025-09-02 23:51:10.000000000 +0200
+++ new/catalogus-0.1.2/pyproject.toml 2026-08-28 11:54:42.000000000 +0200
@@ -4,7 +4,7 @@
[project]
name = "catalogus"
-version = "0.1.0"
+version = "0.1.2"
description = "Classes to provide name-to-object registry-like support"
readme = "README.md"
requires-python = ">=3.9"