Hello community,

here is the log from the commit of package python-cleo for openSUSE:Factory 
checked in at 2020-03-26 23:31:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cleo (Old)
 and      /work/SRC/openSUSE:Factory/.python-cleo.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-cleo"

Thu Mar 26 23:31:50 2020 rev:3 rq:787723 version:0.7.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cleo/python-cleo.changes  2019-09-30 
15:58:22.989378824 +0200
+++ /work/SRC/openSUSE:Factory/.python-cleo.new.3160/python-cleo.changes        
2020-03-26 23:32:01.866748109 +0100
@@ -1,0 +2,11 @@
+Tue Mar 24 10:19:03 UTC 2020 - pgaj...@suse.com
+
+- version update to 0.7.6
+  * Upgraded `clikit` to fix issues in option parsing.
+
+-------------------------------------------------------------------
+Mon Mar 23 18:13:43 UTC 2020 - Matej Cepl <mc...@suse.com>
+
+- Add macro %dephell_genspec to generate setup.py
+
+-------------------------------------------------------------------

Old:
----
  0.7.5.tar.gz

New:
----
  0.7.6.tar.gz

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

Other differences:
------------------
++++++ python-cleo.spec ++++++
--- /var/tmp/diff_new_pack.LZSKN4/_old  2020-03-26 23:32:03.154748575 +0100
+++ /var/tmp/diff_new_pack.LZSKN4/_new  2020-03-26 23:32:03.166748579 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-cleo
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,14 +18,14 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-cleo
-Version:        0.7.5
+Version:        0.7.6
 Release:        0
 Summary:        Python module for creating testable command-line interfaces
 License:        MIT
 Group:          Development/Languages/Python
 URL:            https://github.com/sdispater/cleo
 Source:         https://github.com/sdispater/cleo/archive/%{version}.tar.gz
-BuildRequires:  %{python_module clikit >= 0.2.4}
+BuildRequires:  %{python_module clikit >= 0.4.0}
 BuildRequires:  %{python_module pastel >= 0.1.0}
 BuildRequires:  %{python_module pylev >= 1.3}
 BuildRequires:  %{python_module pytest-mock}
@@ -33,9 +33,10 @@
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module typing}
 BuildRequires:  fdupes
+BuildRequires:  python-dephell-rpm-macros
 BuildRequires:  python-rpm-macros
 BuildRequires:  python3-dephell
-Requires:       python-clikit >= 0.2.4
+Requires:       python-clikit >= 0.4.0
 Requires:       python-pastel >= 0.1.0
 Requires:       python-pylev >= 1.3
 Requires:       python-typing
@@ -47,7 +48,7 @@
 
 %prep
 %setup -q -n cleo-%{version}
-dephell deps convert --from pyproject.toml --to setup.py
+%dephell_gensetup
 
 %build
 %python_build

++++++ 0.7.5.tar.gz -> 0.7.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cleo-0.7.5/CHANGELOG.md new/cleo-0.7.6/CHANGELOG.md
--- old/cleo-0.7.5/CHANGELOG.md 2019-06-28 18:41:19.000000000 +0200
+++ new/cleo-0.7.6/CHANGELOG.md 2019-10-25 14:52:21.000000000 +0200
@@ -1,5 +1,12 @@
 # Change Log
 
+## [0.7.6] - 2019-10-25
+
+### Fixed
+
+- Upgraded `clikit` to fix issues in option parsing.
+
+
 ## [0.7.5] - 2019-06-28
 
 ### Fixed
@@ -205,7 +212,8 @@
 
 
 
-[Unreleased]: https://github.com/sdispater/cleo/compare/0.7.5...master
+[Unreleased]: https://github.com/sdispater/cleo/compare/0.7.6...master
+[0.7.6]: https://github.com/sdispater/cleo/releases/tag/0.7.6
 [0.7.5]: https://github.com/sdispater/cleo/releases/tag/0.7.5
 [0.7.4]: https://github.com/sdispater/cleo/releases/tag/0.7.4
 [0.7.3]: https://github.com/sdispater/cleo/releases/tag/0.7.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cleo-0.7.5/cleo/__init__.py 
new/cleo-0.7.6/cleo/__init__.py
--- old/cleo-0.7.5/cleo/__init__.py     2019-06-28 18:41:19.000000000 +0200
+++ new/cleo-0.7.6/cleo/__init__.py     2019-10-25 14:52:21.000000000 +0200
@@ -6,4 +6,4 @@
 from .testers import ApplicationTester, CommandTester
 
 
-__version__ = "0.7.5"
+__version__ = "0.7.6"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cleo-0.7.5/pyproject.toml 
new/cleo-0.7.6/pyproject.toml
--- old/cleo-0.7.5/pyproject.toml       2019-06-28 18:41:19.000000000 +0200
+++ new/cleo-0.7.6/pyproject.toml       2019-10-25 14:52:21.000000000 +0200
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "cleo"
-version = "0.7.5"
+version = "0.7.6"
 description = "Cleo allows you to create beautiful and testable command-line 
interfaces."
 authors = [
     "Sébastien Eustace <sebast...@eustace.io>"
@@ -16,7 +16,7 @@
 # Requirements
 [tool.poetry.dependencies]
 python = "~2.7 || ^3.4"
-clikit = "^0.3.1"
+clikit = "^0.4.0"
 
 
 [tool.poetry.dev-dependencies]
@@ -29,5 +29,5 @@
 
 
 [build-system]
-requires = ["poetry>=0.12"]
+requires = ["poetry>=1.0.0b2"]
 build-backend = "poetry.masonry.api"


Reply via email to