Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-django-coverage-plugin for 
openSUSE:Factory checked in at 2022-09-15 22:57:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-coverage-plugin (Old)
 and      /work/SRC/openSUSE:Factory/.python-django-coverage-plugin.new.2083 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-django-coverage-plugin"

Thu Sep 15 22:57:54 2022 rev:4 rq:1003759 version:2.0.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-django-coverage-plugin/python-django-coverage-plugin.changes
      2021-12-26 13:30:47.418971252 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-coverage-plugin.new.2083/python-django-coverage-plugin.changes
    2022-09-15 22:58:08.661038191 +0200
@@ -1,0 +2,6 @@
+Sat Sep  3 03:48:09 UTC 2022 - John Vandenberg <jay...@gmail.com>
+
+- Update to v2.0.3
+  * Add support for Django 4.0
+
+-------------------------------------------------------------------

Old:
----
  django_coverage_plugin-2.0.2.tar.gz

New:
----
  django_coverage_plugin-2.0.3.tar.gz

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

Other differences:
------------------
++++++ python-django-coverage-plugin.spec ++++++
--- /var/tmp/diff_new_pack.uJ5e7v/_old  2022-09-15 22:58:09.129039512 +0200
+++ /var/tmp/diff_new_pack.uJ5e7v/_new  2022-09-15 22:58:09.133039524 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-coverage-plugin
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-django-coverage-plugin
-Version:        2.0.2
+Version:        2.0.3
 Release:        0
 Summary:        Django template coveragepy plugin
 License:        Apache-2.0

++++++ django_coverage_plugin-2.0.2.tar.gz -> 
django_coverage_plugin-2.0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django_coverage_plugin-2.0.2/Makefile 
new/django_coverage_plugin-2.0.3/Makefile
--- old/django_coverage_plugin-2.0.2/Makefile   2021-11-11 15:05:51.000000000 
+0100
+++ new/django_coverage_plugin-2.0.3/Makefile   2022-05-04 12:35:32.000000000 
+0200
@@ -30,4 +30,8 @@
        python -m twine check dist/*
 
 kit_upload:                            ## Upload the built distributions to 
PyPI.
-       twine upload --verbose dist/*
+       python -m twine upload --verbose dist/*
+
+tag: ## Make a git tag with the version number
+       git tag -a -m "Version v$$(python setup.py --version)" v$$(python 
setup.py --version)
+       git push --all
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django_coverage_plugin-2.0.2/NOTICE.txt 
new/django_coverage_plugin-2.0.3/NOTICE.txt
--- old/django_coverage_plugin-2.0.2/NOTICE.txt 2021-11-11 15:05:51.000000000 
+0100
+++ new/django_coverage_plugin-2.0.3/NOTICE.txt 2022-05-04 12:35:32.000000000 
+0200
@@ -1,4 +1,4 @@
-Copyright 2015-2021 Ned Batchelder.  All rights reserved.
+Copyright 2015-2022 Ned Batchelder.  All rights reserved.
 
 Except where noted otherwise, this software is licensed under the Apache
 License, Version 2.0 (the "License"); you may not use this work except in
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django_coverage_plugin-2.0.2/README.rst 
new/django_coverage_plugin-2.0.3/README.rst
--- old/django_coverage_plugin-2.0.2/README.rst 2021-11-11 15:05:51.000000000 
+0100
+++ new/django_coverage_plugin-2.0.3/README.rst 2022-05-04 12:35:32.000000000 
+0200
@@ -28,7 +28,7 @@
 
 Supported Python versions: 2.7, and 3.6 through 3.10.
 
-Supported Django versions: 1.8, 1.11, 2.x and 3.x.
+Supported Django versions: 1.8, 1.11, 2.x, 3.x and 4.x.
 
 Supported coverage.py versions: 4.x or higher.
 
@@ -130,6 +130,12 @@
 History
 ~~~~~~~
 
+v2.0.3 ??? 2022-05-04
+-------------------
+
+Add support for Django 4.0
+
+
 v2.0.2 ??? 2021-11-11
 -------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django_coverage_plugin-2.0.2/django_coverage_plugin/plugin.py 
new/django_coverage_plugin-2.0.3/django_coverage_plugin/plugin.py
--- old/django_coverage_plugin-2.0.2/django_coverage_plugin/plugin.py   
2021-11-11 15:05:51.000000000 +0100
+++ new/django_coverage_plugin-2.0.3/django_coverage_plugin/plugin.py   
2022-05-04 12:35:32.000000000 +0200
@@ -365,7 +365,7 @@
                         continue
 
                 if extends and not inblock:
-                    # In an inheriting tempalte, ignore all tags outside of
+                    # In an inheriting template, ignore all tags outside of
                     # blocks.
                     continue
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django_coverage_plugin-2.0.2/howto.txt 
new/django_coverage_plugin-2.0.3/howto.txt
--- old/django_coverage_plugin-2.0.2/howto.txt  2021-11-11 15:05:51.000000000 
+0100
+++ new/django_coverage_plugin-2.0.3/howto.txt  2022-05-04 12:35:32.000000000 
+0200
@@ -11,5 +11,5 @@
 - Kits:
     $ make clean kit
     $ make kit_upload
-- tag git
+    $ make tag
 - make a new gh release: 
https://github.com/nedbat/django_coverage_plugin/releases/new
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django_coverage_plugin-2.0.2/setup.py 
new/django_coverage_plugin-2.0.3/setup.py
--- old/django_coverage_plugin-2.0.2/setup.py   2021-11-11 15:05:51.000000000 
+0100
+++ new/django_coverage_plugin-2.0.3/setup.py   2022-05-04 12:35:32.000000000 
+0200
@@ -48,11 +48,12 @@
 Framework :: Django :: 1.11
 Framework :: Django :: 2.2
 Framework :: Django :: 3.2
+Framework :: Django :: 4.0
 """
 
 setup(
     name='django_coverage_plugin',
-    version='2.0.2',
+    version='2.0.3',
     description='Django template coverage.py plugin',
     long_description=(
         re.compile(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django_coverage_plugin-2.0.2/tests/plugin_test.py 
new/django_coverage_plugin-2.0.3/tests/plugin_test.py
--- old/django_coverage_plugin-2.0.2/tests/plugin_test.py       2021-11-11 
15:05:51.000000000 +0100
+++ new/django_coverage_plugin-2.0.3/tests/plugin_test.py       2022-05-04 
12:35:32.000000000 +0200
@@ -45,6 +45,9 @@
                 'DIRS': ['templates'],      # where the tests put things.
                 'OPTIONS': {
                     'debug': True,
+                    'loaders': [
+                        'django.template.loaders.filesystem.Loader',
+                    ]
                 },
             },
         ],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django_coverage_plugin-2.0.2/tox.ini 
new/django_coverage_plugin-2.0.3/tox.ini
--- old/django_coverage_plugin-2.0.2/tox.ini    2021-11-11 15:05:51.000000000 
+0100
+++ new/django_coverage_plugin-2.0.3/tox.ini    2022-05-04 12:35:32.000000000 
+0200
@@ -17,9 +17,9 @@
     py27-django{18,111},
     py36-django{18,111,22,32},
     py37-django{22,32},
-    py38-django{22,32,tip},
-    py39-django{22,32,tip},
-    py310-django{32,tip},
+    py38-django{22,32,40,tip},
+    py39-django{22,32,40,tip},
+    py310-django{32,40,tip},
     check,pkgcheck,doc
 
 [testenv]
@@ -30,6 +30,7 @@
     django111: Django>=1.11,<2.0
     django22: Django>=2.2,<3.0
     django32: Django>=3.2,<4.0
+    django40: Django>=4.0,<4.1
     djangotip: https://github.com/django/django/archive/main.tar.gz
 
 commands =

Reply via email to