diff -Nru python-crayons-0.3.0/crayons.egg-info/PKG-INFO python-crayons-0.3.1/crayons.egg-info/PKG-INFO --- python-crayons-0.3.0/crayons.egg-info/PKG-INFO 2019-10-09 18:49:35.000000000 +0000 +++ python-crayons-0.3.1/crayons.egg-info/PKG-INFO 2020-06-07 02:03:32.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: crayons -Version: 0.3.0 +Version: 0.3.1 Summary: TextUI colors for Python. Home-page: https://github.com/MasterOdin/crayons Author: Kenneth Reitz @@ -29,9 +29,11 @@ This module is really simple, it gives you colored strings for terminal - usage. Included colors are ``red``, ``green``, ``yellow``, ``blue``, ``black``, ``magenta``, ``cyan``, ``white``, and ``normal`` ( as well as ``clean`` and ``disable``). + usage. Included colors are ``red``, ``green``, ``yellow``, ``blue``, ``black``, ``magenta``, ``cyan``, ``white``, and + ``normal`` (as well as ``clean`` and ``disable``). - **Crayons** is nice because it automatically wraps a given string in both the foreground color, as well as returning to the original state after the string is complete. Most terminal color libraries make you manage this yourself. + **Crayons** is nice because it automatically wraps a given string in both the foreground color, as well as returning to the + original state after the string is complete. Most terminal color libraries make you manage this yourself. .. image:: https://d3vv6lp55qjaqc.cloudfront.net/items/3q0I293q1z293R3a3a3n/Screen%20Shot%202017-01-23%20at%206.00.02%20PM.png?X-CloudApp-Visitor-Id=2577 diff -Nru python-crayons-0.3.0/crayons.egg-info/SOURCES.txt python-crayons-0.3.1/crayons.egg-info/SOURCES.txt --- python-crayons-0.3.0/crayons.egg-info/SOURCES.txt 2019-10-09 18:49:35.000000000 +0000 +++ python-crayons-0.3.1/crayons.egg-info/SOURCES.txt 2020-06-07 02:03:32.000000000 +0000 @@ -1,3 +1,4 @@ +LICENSE README.rst crayons.py setup.cfg diff -Nru python-crayons-0.3.0/crayons.py python-crayons-0.3.1/crayons.py --- python-crayons-0.3.0/crayons.py 2019-10-09 18:38:10.000000000 +0000 +++ python-crayons-0.3.1/crayons.py 2020-06-07 02:03:25.000000000 +0000 @@ -47,7 +47,7 @@ if not PY3 and isinstance(s, unicode): # noqa: F821 self.s = s.encode('utf-8') else: - self.s = s + self.s = str(s) self.color = REPLACE_COLORS.get(color, color) self.always_color = always_color self.bold = bold diff -Nru python-crayons-0.3.0/debian/changelog python-crayons-0.3.1/debian/changelog --- python-crayons-0.3.0/debian/changelog 2019-11-18 08:11:26.000000000 +0000 +++ python-crayons-0.3.1/debian/changelog 2020-06-13 09:23:17.000000000 +0000 @@ -1,3 +1,10 @@ +python-crayons (0.3.1-1) unstable; urgency=medium + + * New upstream version 0.3.1 + * Bump Standards-Version to 4.5.0 + + -- TANIGUCHI Takaki Sat, 13 Jun 2020 18:23:17 +0900 + python-crayons (0.3.0-1) unstable; urgency=medium * d/watch: Fix a package name diff -Nru python-crayons-0.3.0/debian/control python-crayons-0.3.1/debian/control --- python-crayons-0.3.0/debian/control 2019-11-18 08:11:26.000000000 +0000 +++ python-crayons-0.3.1/debian/control 2020-06-13 09:23:17.000000000 +0000 @@ -3,7 +3,7 @@ Priority: optional Maintainer: TANIGUCHI Takaki Build-Depends: debhelper-compat (= 12), dh-python, python3-all, python3-setuptools -Standards-Version: 4.4.1 +Standards-Version: 4.5.0 Homepage: https://github.com/MasterOdin/crayons Vcs-Browser: https://salsa.debian.org/python-team/modules/python-crayons Vcs-Git: https://salsa.debian.org/python-team/modules/python-crayons.git diff -Nru python-crayons-0.3.0/LICENSE python-crayons-0.3.1/LICENSE --- python-crayons-0.3.0/LICENSE 1970-01-01 00:00:00.000000000 +0000 +++ python-crayons-0.3.1/LICENSE 2020-06-07 02:03:25.000000000 +0000 @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright 2017 Kenneth Reitz +Copyright 2019 Matthew Peveler + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff -Nru python-crayons-0.3.0/PKG-INFO python-crayons-0.3.1/PKG-INFO --- python-crayons-0.3.0/PKG-INFO 2019-10-09 18:49:35.000000000 +0000 +++ python-crayons-0.3.1/PKG-INFO 2020-06-07 02:03:32.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: crayons -Version: 0.3.0 +Version: 0.3.1 Summary: TextUI colors for Python. Home-page: https://github.com/MasterOdin/crayons Author: Kenneth Reitz @@ -29,9 +29,11 @@ This module is really simple, it gives you colored strings for terminal - usage. Included colors are ``red``, ``green``, ``yellow``, ``blue``, ``black``, ``magenta``, ``cyan``, ``white``, and ``normal`` ( as well as ``clean`` and ``disable``). + usage. Included colors are ``red``, ``green``, ``yellow``, ``blue``, ``black``, ``magenta``, ``cyan``, ``white``, and + ``normal`` (as well as ``clean`` and ``disable``). - **Crayons** is nice because it automatically wraps a given string in both the foreground color, as well as returning to the original state after the string is complete. Most terminal color libraries make you manage this yourself. + **Crayons** is nice because it automatically wraps a given string in both the foreground color, as well as returning to the + original state after the string is complete. Most terminal color libraries make you manage this yourself. .. image:: https://d3vv6lp55qjaqc.cloudfront.net/items/3q0I293q1z293R3a3a3n/Screen%20Shot%202017-01-23%20at%206.00.02%20PM.png?X-CloudApp-Visitor-Id=2577 diff -Nru python-crayons-0.3.0/README.rst python-crayons-0.3.1/README.rst --- python-crayons-0.3.0/README.rst 2019-10-09 13:55:04.000000000 +0000 +++ python-crayons-0.3.1/README.rst 2020-06-07 02:03:25.000000000 +0000 @@ -18,9 +18,11 @@ This module is really simple, it gives you colored strings for terminal -usage. Included colors are ``red``, ``green``, ``yellow``, ``blue``, ``black``, ``magenta``, ``cyan``, ``white``, and ``normal`` ( as well as ``clean`` and ``disable``). +usage. Included colors are ``red``, ``green``, ``yellow``, ``blue``, ``black``, ``magenta``, ``cyan``, ``white``, and +``normal`` (as well as ``clean`` and ``disable``). -**Crayons** is nice because it automatically wraps a given string in both the foreground color, as well as returning to the original state after the string is complete. Most terminal color libraries make you manage this yourself. +**Crayons** is nice because it automatically wraps a given string in both the foreground color, as well as returning to the +original state after the string is complete. Most terminal color libraries make you manage this yourself. .. image:: https://d3vv6lp55qjaqc.cloudfront.net/items/3q0I293q1z293R3a3a3n/Screen%20Shot%202017-01-23%20at%206.00.02%20PM.png?X-CloudApp-Visitor-Id=2577 diff -Nru python-crayons-0.3.0/setup.py python-crayons-0.3.1/setup.py --- python-crayons-0.3.0/setup.py 2019-10-09 18:17:12.000000000 +0000 +++ python-crayons-0.3.1/setup.py 2020-06-07 02:03:25.000000000 +0000 @@ -31,7 +31,7 @@ setup( name='crayons', - version='0.3.0', + version='0.3.1', description='TextUI colors for Python.', long_description=long_description, author='Kenneth Reitz',