Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-poetry-dynamic-versioning for openSUSE:Factory checked in at 2025-07-11 21:31:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-poetry-dynamic-versioning (Old) and /work/SRC/openSUSE:Factory/.python-poetry-dynamic-versioning.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-poetry-dynamic-versioning" Fri Jul 11 21:31:18 2025 rev:13 rq:1292089 version:1.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-poetry-dynamic-versioning/python-poetry-dynamic-versioning.changes 2025-07-06 17:19:44.664330415 +0200 +++ /work/SRC/openSUSE:Factory/.python-poetry-dynamic-versioning.new.7373/python-poetry-dynamic-versioning.changes 2025-07-11 21:33:52.590375825 +0200 @@ -1,0 +2,7 @@ +Fri Jul 11 13:43:52 UTC 2025 - Richard Rahl <rra...@opensuse.org> + +- update to 1.9.1: + * File paths in tool.poetry-dynamic-versioning.files were not resolved the + same way as paths in tool.poetry-dynamic-versioning.substitution.files + +------------------------------------------------------------------- Old: ---- poetry_dynamic_versioning-1.9.0.tar.gz New: ---- poetry_dynamic_versioning-1.9.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-poetry-dynamic-versioning.spec ++++++ --- /var/tmp/diff_new_pack.vTfetb/_old 2025-07-11 21:33:53.106397051 +0200 +++ /var/tmp/diff_new_pack.vTfetb/_new 2025-07-11 21:33:53.110397216 +0200 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-poetry-dynamic-versioning -Version: 1.9.0 +Version: 1.9.1 Release: 0 Summary: Plugin for Poetry to enable dynamic versioning based on VCS tags License: MIT ++++++ poetry_dynamic_versioning-1.9.0.tar.gz -> poetry_dynamic_versioning-1.9.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry_dynamic_versioning-1.9.0/CHANGELOG.md new/poetry_dynamic_versioning-1.9.1/CHANGELOG.md --- old/poetry_dynamic_versioning-1.9.0/CHANGELOG.md 2025-07-04 21:45:44.206459000 +0200 +++ new/poetry_dynamic_versioning-1.9.1/CHANGELOG.md 2025-07-09 04:43:11.448846600 +0200 @@ -1,3 +1,11 @@ +## v1.9.1 (2025-07-08) + +* Fixed: + * File paths in `tool.poetry-dynamic-versioning.files` were not resolved + the same way as paths in `tool.poetry-dynamic-versioning.substitution.files`, + which could cause incorrect behavior with different styles of relative paths. + ([Contributed by egelja](https://github.com/mtkennerly/poetry-dynamic-versioning/pull/238)) + ## v1.9.0 (2025-07-04) * Added: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry_dynamic_versioning-1.9.0/PKG-INFO new/poetry_dynamic_versioning-1.9.1/PKG-INFO --- old/poetry_dynamic_versioning-1.9.0/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 +++ new/poetry_dynamic_versioning-1.9.1/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: poetry-dynamic-versioning -Version: 1.9.0 +Version: 1.9.1 Summary: Plugin for Poetry to enable dynamic versioning based on VCS tags Home-page: https://github.com/mtkennerly/poetry-dynamic-versioning License: MIT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry_dynamic_versioning-1.9.0/poetry_dynamic_versioning/__init__.py new/poetry_dynamic_versioning-1.9.1/poetry_dynamic_versioning/__init__.py --- old/poetry_dynamic_versioning-1.9.0/poetry_dynamic_versioning/__init__.py 2025-07-04 21:34:01.443429500 +0200 +++ new/poetry_dynamic_versioning-1.9.1/poetry_dynamic_versioning/__init__.py 2025-07-09 04:34:16.042433500 +0200 @@ -766,7 +766,7 @@ persistent = [] for file, file_info in config["files"].items(): if file_info["persistent-substitution"]: - persistent.append(state.path.parent.joinpath(file)) + persistent.append(state.path.parent.joinpath(file).resolve()) for file, content in state.substitutions.items(): if file in persistent: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry_dynamic_versioning-1.9.0/pyproject.toml new/poetry_dynamic_versioning-1.9.1/pyproject.toml --- old/poetry_dynamic_versioning-1.9.0/pyproject.toml 2025-07-04 21:45:44.206459000 +0200 +++ new/poetry_dynamic_versioning-1.9.1/pyproject.toml 2025-07-09 04:43:11.448846600 +0200 @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-dynamic-versioning" -version = "1.9.0" +version = "1.9.1" description = "Plugin for Poetry to enable dynamic versioning based on VCS tags" license = "MIT" authors = ["Matthew T. Kennerly <mtkenne...@gmail.com>"]