Hello community,

here is the log from the commit of package python3-websocket-client for 
openSUSE:Factory checked in at 2017-02-22 13:54:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-websocket-client (Old)
 and      /work/SRC/openSUSE:Factory/.python3-websocket-client.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-websocket-client"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python3-websocket-client/python3-websocket-client.changes
        2016-12-05 16:34:00.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-websocket-client.new/python3-websocket-client.changes
   2017-02-22 13:54:50.329181499 +0100
@@ -1,0 +2,9 @@
+Mon Feb 20 21:49:15 UTC 2017 - [email protected]
+
+- specfile:
+  * update copyright year
+
+- update to version 0.40.0:
+  * Fix opcode -> op_code (#286)
+
+-------------------------------------------------------------------

Old:
----
  websocket_client-0.39.0.tar.gz

New:
----
  websocket_client-0.40.0.tar.gz

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

Other differences:
------------------
++++++ python3-websocket-client.spec ++++++
--- /var/tmp/diff_new_pack.TeW95z/_old  2017-02-22 13:54:50.893101264 +0100
+++ /var/tmp/diff_new_pack.TeW95z/_new  2017-02-22 13:54:50.893101264 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-websocket-client
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           python3-websocket-client
-Version:        0.39.0
+Version:        0.40.0
 Release:        0
 Summary:        WebSocket client implementation
 License:        LGPL-2.1

++++++ websocket_client-0.39.0.tar.gz -> websocket_client-0.40.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/websocket_client-0.39.0/ChangeLog 
new/websocket_client-0.40.0/ChangeLog
--- old/websocket_client-0.39.0/ChangeLog       2016-12-02 01:52:08.000000000 
+0100
+++ new/websocket_client-0.40.0/ChangeLog       2016-12-09 03:07:29.000000000 
+0100
@@ -1,6 +1,9 @@
 ChangeLog
 ============
 
+- 0.40.0
+  - Fix opcode -> op_code (#286)
+
 - 0.39.0
   - Shuffled around example code (#256)
   - _send_ping graceful error handling (#262)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/websocket_client-0.39.0/PKG-INFO 
new/websocket_client-0.40.0/PKG-INFO
--- old/websocket_client-0.39.0/PKG-INFO        2016-12-02 01:58:00.000000000 
+0100
+++ new/websocket_client-0.40.0/PKG-INFO        2016-12-09 03:11:01.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: websocket_client
-Version: 0.39.0
+Version: 0.40.0
 Summary: WebSocket client for python. hybi13 is supported.
 Home-page: https://github.com/liris/websocket-client
 Author: liris
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/websocket_client-0.39.0/setup.py 
new/websocket_client-0.40.0/setup.py
--- old/websocket_client-0.39.0/setup.py        2016-12-02 01:57:55.000000000 
+0100
+++ new/websocket_client-0.40.0/setup.py        2016-12-09 03:07:47.000000000 
+0100
@@ -3,7 +3,7 @@
 from setuptools import setup
 import pkg_resources
 
-VERSION = "0.39.0"
+VERSION = "0.40.0"
 NAME = "websocket_client"
 
 install_requires = ["six"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/websocket_client-0.39.0/websocket/__init__.py 
new/websocket_client-0.40.0/websocket/__init__.py
--- old/websocket_client-0.39.0/websocket/__init__.py   2016-10-03 
03:38:18.000000000 +0200
+++ new/websocket_client-0.40.0/websocket/__init__.py   2016-12-09 
03:08:02.000000000 +0100
@@ -26,4 +26,4 @@
 from ._logging import *
 from ._socket import *
 
-__version__ = "0.39.0"
+__version__ = "0.40.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/websocket_client-0.39.0/websocket/_app.py 
new/websocket_client-0.40.0/websocket/_app.py
--- old/websocket_client-0.39.0/websocket/_app.py       2016-10-03 
03:47:28.000000000 +0200
+++ new/websocket_client-0.40.0/websocket/_app.py       2016-12-09 
03:06:53.000000000 +0100
@@ -218,7 +218,7 @@
                                        frame.data, frame.fin)
                     else:
                         data = frame.data
-                        if six.PY3 and opcode == ABNF.OPCODE_TEXT:
+                        if six.PY3 and op_code == ABNF.OPCODE_TEXT:
                             data = data.decode("utf-8")
                         self._callback(self.on_data, data, frame.opcode, True)
                         self._callback(self.on_message, data)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/websocket_client-0.39.0/websocket_client.egg-info/PKG-INFO 
new/websocket_client-0.40.0/websocket_client.egg-info/PKG-INFO
--- old/websocket_client-0.39.0/websocket_client.egg-info/PKG-INFO      
2016-12-02 01:58:00.000000000 +0100
+++ new/websocket_client-0.40.0/websocket_client.egg-info/PKG-INFO      
2016-12-09 03:11:01.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: websocket-client
-Version: 0.39.0
+Version: 0.40.0
 Summary: WebSocket client for python. hybi13 is supported.
 Home-page: https://github.com/liris/websocket-client
 Author: liris


Reply via email to