Skip to content

Commit 12e5d16

Browse files
committed
XSS prevention by default
1 parent 47919c4 commit 12e5d16

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

json2html/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'''
22
python wrapper for JSON to HTML-Table convertor
3-
(c) 2013 Varun Malhotra. MIT License
3+
(c) 2013-17 Varun Malhotra. MIT License
44
'''
55

66
from .jsonconv import *
77

88
__author__ = 'Varun Malhotra'
9-
__version__ = '1.2.0'
9+
__version__ = '1.2.1'
1010
__license__ = 'MIT'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
setup(
1212
name = 'json2html',
1313
packages = ['json2html'],
14-
version = '1.2.0',
14+
version = '1.2.1',
1515
install_requires=required,
1616
description = 'JSON to HTML Table Representation',
1717
long_description=open('README.rst').read(),
1818
author = 'Varun Malhotra',
1919
author_email = 'varun2902@gmail.com',
2020
url = 'https://github.com/softvar/json2html',
21-
download_url = 'https://github.com/softvar/json2html/tarball/1.2.0',
21+
download_url = 'https://github.com/softvar/json2html/tarball/1.2.1',
2222
keywords = ['json', 'HTML', 'Table'],
2323
license = 'MIT',
2424
classifiers = (

0 commit comments

Comments
 (0)