Hello community,

here is the log from the commit of package python-django-json-widget for 
openSUSE:Factory checked in at 2020-04-28 22:31:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-json-widget (Old)
 and      /work/SRC/openSUSE:Factory/.python-django-json-widget.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-django-json-widget"

Tue Apr 28 22:31:50 2020 rev:4 rq:798596 version:1.0.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-django-json-widget/python-django-json-widget.changes
      2020-02-20 14:59:22.394758142 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-json-widget.new.2738/python-django-json-widget.changes
    2020-04-28 22:32:20.409750375 +0200
@@ -1,0 +2,6 @@
+Tue Apr 28 09:04:01 UTC 2020 - Tomáš Chvátal <[email protected]>
+
+- Update to 1.0.1:
+  * no changelog
+
+-------------------------------------------------------------------

Old:
----
  django-json-widget-1.0.0.tar.gz

New:
----
  django-json-widget-1.0.1.tar.gz

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

Other differences:
------------------
++++++ python-django-json-widget.spec ++++++
--- /var/tmp/diff_new_pack.XBTgZz/_old  2020-04-28 22:32:21.129751718 +0200
+++ /var/tmp/diff_new_pack.XBTgZz/_new  2020-04-28 22:32:21.129751718 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-django-json-widget
-Version:        1.0.0
+Version:        1.0.1
 Release:        0
 Summary:        Django JSON widget for editing the Django jsonfield
 License:        MIT

++++++ django-json-widget-1.0.0.tar.gz -> django-json-widget-1.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/.travis.yml 
new/django-json-widget-1.0.1/.travis.yml
--- old/django-json-widget-1.0.0/.travis.yml    2020-01-16 00:58:38.000000000 
+0100
+++ new/django-json-widget-1.0.1/.travis.yml    2020-04-17 00:32:48.000000000 
+0200
@@ -3,19 +3,67 @@
 language: python
 
 python:
+  - "3.7"
   - "3.6"
   - "3.5"
   - "3.4"
   - "2.7"
 
-env:
-  - DJANGO_VERSION=1.11.15
-
 matrix:
   fast_finish: true
+  include:
+    # DJANGO 1.11
+    - python: 2.7
+      env: DJANGO_VERSION=1.11
+    - python: 3.4
+      env: DJANGO_VERSION=1.11
+    - python: 3.5
+      env: DJANGO_VERSION=1.11
+    - python: 3.6
+      env: DJANGO_VERSION=1.11
+
+    # DJANGO 2.0
+    - python: 3.4
+      env: DJANGO_VERSION=2.0
+    - python: 3.5
+      env: DJANGO_VERSION=2.0
+    - python: 3.6
+      env: DJANGO_VERSION=2.0
+    - python: 3.7
+      env: DJANGO_VERSION=2.0
+
+    # DJANGO 2.1
+    - python: 3.5
+      env: DJANGO_VERSION=2.1
+    - python: 3.6
+      env: DJANGO_VERSION=2.1
+    - python: 3.7
+      env: DJANGO_VERSION=2.1
+
+    # DJANGO 2.2.10
+    - python: 3.5
+      env: DJANGO_VERSION=2.2.10
+    - python: 3.6
+      env: DJANGO_VERSION=2.2.10
+    - python: 3.7
+      env: DJANGO_VERSION=2.2.10
 
 # command to install dependencies, e.g. pip install -r requirements.txt 
--use-mirrors
-install: pip install -r requirements_test.txt
+install:
+  - echo "$DJANGO_VERSION"
+  - pip install -r requirements_test.txt
+  - if [[ "$DJANGO_VERSION" == 1.11 ]]; then
+    pip install Django==1.11.27;
+    fi
+  - if [[ "$DJANGO_VERSION" == 2.0 ]]; then
+    pip install Django==2.0.13;
+    fi
+  - if [[ "$DJANGO_VERSION" == 2.1 ]]; then
+    pip install Django==2.1.15;
+    fi
+  - if [[ "$DJANGO_VERSION" == 2.2.10 ]]; then
+    pip install Django==2.2.9;
+    fi
 
 # command to run tests using coverage, e.g. python setup.py test
 script: coverage run --source django_json_widget runtests.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/AUTHORS.rst 
new/django-json-widget-1.0.1/AUTHORS.rst
--- old/django-json-widget-1.0.0/AUTHORS.rst    2020-01-16 00:58:38.000000000 
+0100
+++ new/django-json-widget-1.0.1/AUTHORS.rst    2020-04-17 00:32:48.000000000 
+0200
@@ -10,7 +10,11 @@
 Contributors
 ------------
 
-* Knut Hühne (k-nut) <[email protected]>
-* Qiying Wang (WqyJh) <[email protected]>
+* Knut Hühne (k-nut)
+* Qiying Wang (WqyJh)
 * Erkin Çakar (travijuu)
 * Vinay Pai (vinaypai)
+* Pedro Miguel Correia (pedroma)
+* Artur BarseghyanArtur Barseghyan (barseghyanartur)
+* Alexandre Voiney (avoiney)
+* Michał Bielawski (D3X)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/CHANGELOG.rst 
new/django-json-widget-1.0.1/CHANGELOG.rst
--- old/django-json-widget-1.0.0/CHANGELOG.rst  2020-01-16 00:58:38.000000000 
+0100
+++ new/django-json-widget-1.0.1/CHANGELOG.rst  2020-04-17 00:32:48.000000000 
+0200
@@ -2,6 +2,12 @@
 Changelog
 =========
 
+1.0.0 (2020-01-16)
+==================
+
+* Update Makefile
+* Make Stable the project
+
 
 0.3.0 (2020-01-16)
 ==================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/Makefile 
new/django-json-widget-1.0.1/Makefile
--- old/django-json-widget-1.0.0/Makefile       2020-01-16 00:58:38.000000000 
+0100
+++ new/django-json-widget-1.0.1/Makefile       2020-04-17 00:32:48.000000000 
+0200
@@ -58,5 +58,5 @@
        python setup.py sdist
        ls -l dist
 
-twine-release: clean ## upload release to pypi
+twine-release: ## upload release to pypi
        twine upload dist/*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django-json-widget-1.0.0/django_json_widget/__init__.py 
new/django-json-widget-1.0.1/django_json_widget/__init__.py
--- old/django-json-widget-1.0.0/django_json_widget/__init__.py 2020-01-16 
00:58:38.000000000 +0100
+++ new/django-json-widget-1.0.1/django_json_widget/__init__.py 2020-04-17 
00:32:48.000000000 +0200
@@ -1 +1 @@
-__version__ = '1.0.0'
+__version__ = '1.0.1'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django-json-widget-1.0.0/django_json_widget/widgets.py 
new/django-json-widget-1.0.1/django_json_widget/widgets.py
--- old/django-json-widget-1.0.0/django_json_widget/widgets.py  2020-01-16 
00:58:38.000000000 +0100
+++ new/django-json-widget-1.0.1/django_json_widget/widgets.py  2020-04-17 
00:32:48.000000000 +0200
@@ -2,13 +2,12 @@
 from builtins import super
 
 from django import forms
-from django.templatetags.static import static
 
 
 class JSONEditorWidget(forms.Widget):
     class Media:
-        css = {'all': (static('dist/jsoneditor.min.css'), )}
-        js = (static('dist/jsoneditor.min.js'),)
+        css = {'all': ('dist/jsoneditor.min.css', )}
+        js = ('dist/jsoneditor.min.js',)
 
     template_name = 'django_json_widget.html'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/requirements.txt 
new/django-json-widget-1.0.1/requirements.txt
--- old/django-json-widget-1.0.0/requirements.txt       2020-01-16 
00:58:38.000000000 +0100
+++ new/django-json-widget-1.0.1/requirements.txt       2020-04-17 
00:32:48.000000000 +0200
@@ -1,2 +1,2 @@
-Django==2.2.9
+Django==2.2.10
 psycopg2-binary==2.8.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/requirements_dev.txt 
new/django-json-widget-1.0.1/requirements_dev.txt
--- old/django-json-widget-1.0.0/requirements_dev.txt   2020-01-16 
00:58:38.000000000 +0100
+++ new/django-json-widget-1.0.1/requirements_dev.txt   2020-04-17 
00:32:48.000000000 +0200
@@ -1,5 +1,6 @@
 -r requirements.txt
 bumpversion==0.5.3
+twine==3.1.1
 wheel==0.29.0
 flake8==3.7.9
 ipdb==0.12.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/requirements_test.txt 
new/django-json-widget-1.0.1/requirements_test.txt
--- old/django-json-widget-1.0.0/requirements_test.txt  2020-01-16 
00:58:38.000000000 +0100
+++ new/django-json-widget-1.0.1/requirements_test.txt  2020-04-17 
00:32:48.000000000 +0200
@@ -1,7 +1,7 @@
-Django==2.2.9
-coverage==5.0.3
-mock>=1.0.1
-codecov==2.0.15
-pytest==5.3.2
-pytest-cov==2.8.1
-tox==3.14.3
+Django
+coverage
+mock
+codecov
+pytest
+pytest-cov
+tox
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/setup.cfg 
new/django-json-widget-1.0.1/setup.cfg
--- old/django-json-widget-1.0.0/setup.cfg      2020-01-16 00:58:38.000000000 
+0100
+++ new/django-json-widget-1.0.1/setup.cfg      2020-04-17 00:32:48.000000000 
+0200
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 1.0.0
+current_version = 1.0.1
 commit = True
 tag = True
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-json-widget-1.0.0/setup.py 
new/django-json-widget-1.0.1/setup.py
--- old/django-json-widget-1.0.0/setup.py       2020-01-16 00:58:38.000000000 
+0100
+++ new/django-json-widget-1.0.1/setup.py       2020-04-17 00:32:48.000000000 
+0200
@@ -46,7 +46,7 @@
 
 setup(
     name='django-json-widget',
-    version='1.0.0',
+    version='1.0.1',
     description="""Django json widget is an alternative widget that makes it 
easy to edit the jsonfield field of django.""",
     long_description=readme + '\n\n' + history,
     author='José Manuel Rivas',


Reply via email to