1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
This commit is contained in:
Charles Lowell 2015-04-06 22:47:55 -05:00
parent f3b8f8461a
commit 37a2f4007c
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,10 @@
# Changelog
## 0.12.2 2015/04/06
* fix memory leak where weak hash map entries were not being cleaned
up. Thanks to @SamSaffon
## 0.12.1 2014/02/03
* add `timeout` option to `V8::Context` to forcibly abort long running scripts (thanks to @SamSaffron)

View file

@ -1,3 +1,3 @@
module V8
VERSION = "0.12.1"
VERSION = "0.12.2"
end