Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-py-partiql-parser for
openSUSE:Factory checked in at 2023-07-25 11:49:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-py-partiql-parser (Old)
and /work/SRC/openSUSE:Factory/.python-py-partiql-parser.new.1467 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-py-partiql-parser"
Tue Jul 25 11:49:15 2023 rev:2 rq:1099608 version:0.3.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-py-partiql-parser/python-py-partiql-parser.changes
2023-07-18 21:55:25.950731794 +0200
+++
/work/SRC/openSUSE:Factory/.python-py-partiql-parser.new.1467/python-py-partiql-parser.changes
2023-07-25 11:49:18.812823744 +0200
@@ -1,0 +2,10 @@
+Thu Jul 20 02:17:52 UTC 2023 - Steve Kowalik <[email protected]>
+
+- Update to 0.3.5:
+ * Packaging improvements: Include source-files in the release
+- Drop patch correct-packages-decl.patch:
+ * Included upstream.
+- Drop patch correct-version-to-tag.patch:
+ * No longer required.
+
+-------------------------------------------------------------------
Old:
----
correct-packages-decl.patch
correct-version-to-tag.patch
py-partiql-parser-0.3.4.tar.gz
New:
----
py-partiql-parser-0.3.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-py-partiql-parser.spec ++++++
--- /var/tmp/diff_new_pack.a6auxw/_old 2023-07-25 11:49:19.760829295 +0200
+++ /var/tmp/diff_new_pack.a6auxw/_new 2023-07-25 11:49:19.764829318 +0200
@@ -17,16 +17,12 @@
Name: python-py-partiql-parser
-Version: 0.3.4
+Version: 0.3.5
Release: 0
Summary: Pure Python PartiQL Parser
License: MIT
URL: https://github.com/getmoto/py-partiql-parser
Source:
https://github.com/getmoto/py-partiql-parser/archive/refs/tags/%{version}.tar.gz#/py-partiql-parser-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM gh#getmoto/py-partiql-parser#3
-Patch0: correct-packages-decl.patch
-# PATCH-FIX-OPENSUSE https://github.com/getmoto/py-partiql-parser/issues/4
-Patch1: correct-version-to-tag.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools >= 59.0.0}
++++++ py-partiql-parser-0.3.4.tar.gz -> py-partiql-parser-0.3.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/py-partiql-parser-0.3.4/CHANGELOG.md
new/py-partiql-parser-0.3.5/CHANGELOG.md
--- old/py-partiql-parser-0.3.4/CHANGELOG.md 2023-06-13 20:44:13.000000000
+0200
+++ new/py-partiql-parser-0.3.5/CHANGELOG.md 2023-07-19 20:22:25.000000000
+0200
@@ -1,6 +1,10 @@
CHANGELOG
=========
+0.3.5
+-----
+ - Packaging improvements: Include source-files in the release, and update the
version nr
+
0.3.4
-----
- Packaging improvements: Include `tests/__init__.py` in the release and add
project links to PyPi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/py-partiql-parser-0.3.4/py_partiql_parser/__init__.py
new/py-partiql-parser-0.3.5/py_partiql_parser/__init__.py
--- old/py-partiql-parser-0.3.4/py_partiql_parser/__init__.py 2023-06-13
20:44:13.000000000 +0200
+++ new/py-partiql-parser-0.3.5/py_partiql_parser/__init__.py 2023-07-19
20:22:25.000000000 +0200
@@ -1,4 +1,4 @@
-__version__ = "0.3.3"
+__version__ = "0.3.5"
from ._internal.parser import DynamoDBStatementParser, S3SelectParser # noqa
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/py-partiql-parser-0.3.4/pyproject.toml
new/py-partiql-parser-0.3.5/pyproject.toml
--- old/py-partiql-parser-0.3.4/pyproject.toml 2023-06-13 20:44:13.000000000
+0200
+++ new/py-partiql-parser-0.3.5/pyproject.toml 2023-07-19 20:22:25.000000000
+0200
@@ -1,6 +1,6 @@
[project]
name = "py-partiql-parser"
-version = "0.3.3"
+version = "0.3.5"
description = "Pure Python PartiQL Parser"
readme = "README.md"
keywords = ["pypartiql", "parser"]
@@ -16,6 +16,8 @@
[tool.setuptools]
packages = [
+ "py_partiql_parser",
+ "py_partiql_parser._internal",
"tests"
]