Skip to content

Commit 19afba3

Browse files
committed
Merge branch 'hotfix/0.18.3'
2 parents 43e1154 + 901cbb9 commit 19afba3

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
ChangeLog
33
*********
44

5+
0.18.3 (2017-01-11)
6+
===================
7+
- Fix: Increase max codepygments render size to 200kb from 64kb.
8+
59
0.18.2 (2017-01-04)
610
===================
711
- Happy New Year!

mfr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '0.18.2'
1+
__version__ = '0.18.3'
22
__import__('pkg_resources').declare_namespace(__name__)

mfr/extensions/codepygments/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
config = settings.child('CODEPYGMENTS_EXTENSION_CONFIG')
44

5-
MAX_SIZE = int(config.get('MAX_SIZE', 65536))
5+
MAX_SIZE = int(config.get('MAX_SIZE', 204800)) # 200kb

0 commit comments

Comments
 (0)