Skip to content

Commit

Permalink
Bump to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nizox committed Apr 20, 2021
1 parent dc268e7 commit f21b58e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
History
-------

0.6.0 (2020-04-20)
'''''''''''''''''''
* Update V8 to 8.9
* Optimize function calls without arguments
* Switch V8 to single threaded mode to avoid crashes after fork
* Switch to strict mode by default
* Revamp documentation

0.5.0 (2020-02-25)
'''''''''''''''''''
* Update V8 to 8.8
Expand Down
4 changes: 2 additions & 2 deletions py_mini_racer/__about__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = 'Sqreen'
__email__ = 'hey@sqreen.io'
__version__ = '0.5.0'
__email__ = 'support@sqreen.com'
__version__ = '0.6.0'
2 changes: 1 addition & 1 deletion py_mini_racer/py_mini_racer.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class MiniRacer(object):
"""

json_impl = json
v8_flags = []
v8_flags = ["--single-threaded"]
ext = None

def __init__(self):
Expand Down

0 comments on commit f21b58e

Please sign in to comment.