Skip to content

Commit

Permalink
* 0.4.9, fixing compilation errors. Closes #21.
Browse files Browse the repository at this point in the history
  • Loading branch information
audreyt committed Dec 3, 2013
1 parent 1e307b0 commit 5cae490
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
@@ -1,3 +1,10 @@
## 0.4.9

### Bug Fixes

* Fix compilation on Node 0.8.x (@RemcoTukker).
* Upgrade LiveScript in devDependencies; no functional changes.

## 0.4.8

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions binding.gyp
Expand Up @@ -3,8 +3,8 @@
{
'target_name': 'WebWorkerThreads',
'sources': [ 'src/WebWorkerThreads.cc' ],
'cflags!': [ '-fno-exceptions -DV8_USE_UNSAFE_HANDLES' ],
'cflags_cc!': [ '-fno-exceptions -DV8_USE_UNSAFE_HANDLES' ],
'cflags!': [ '-fno-exceptions', '-DV8_USE_UNSAFE_HANDLES' ],
'cflags_cc!': [ '-fno-exceptions', '-DV8_USE_UNSAFE_HANDLES' ],
'conditions': [
['OS=="mac"', {
'xcode_settings': {
Expand Down
Binary file modified deps/minifier/bin/minify
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "webworker-threads",
"version": "0.4.8",
"version": "0.4.9",
"main": "build/Release/WebWorkerThreads.node",
"description": "Lightweight Web Worker API implementation with native threads",
"keywords": [
Expand Down Expand Up @@ -36,7 +36,7 @@
"js": "env PATH=./node_modules/.bin:\"$PATH\" lsc -cj package.ls;\ngcc deps/minifier/src/minify.c -o deps/minifier/bin/minify;\nenv PATH=./node_modules/.bin:\"$PATH\" lsc -cbp src/worker.ls > src/worker.js;\n./deps/minifier/bin/minify kWorker_js < src/worker.js > src/worker.js.c;\nenv PATH=./node_modules/.bin:\"$PATH\" lsc -cbp src/events.ls > src/events.js;\n./deps/minifier/bin/minify kEvents_js < src/events.js > src/events.js.c;\nenv PATH=./node_modules/.bin:\"$PATH\" lsc -cbp src/createPool.ls > src/createPool.js;\n./deps/minifier/bin/minify kCreatePool_js < src/createPool.js > src/createPool.js.c;\nenv PATH=./node_modules/.bin:\"$PATH\" lsc -cbp src/thread_nextTick.ls > src/thread_nextTick.js;\n./deps/minifier/bin/minify kThread_nextTick_js 1 < src/thread_nextTick.js > src/thread_nextTick.js.c;\nenv PATH=./node_modules/.bin:\"$PATH\" lsc -cbp src/load.ls > src/load.js;\n./deps/minifier/bin/minify kLoad_js 1 1 < src/load.js > src/load.js.c;"
},
"devDependencies": {
"LiveScript": "1.1.x"
"LiveScript": "1.2.x"
},
"gypfile": true,
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions package.ls
@@ -1,6 +1,6 @@
#!/usr/bin/env lsc -cj
name: \webworker-threads
version: \0.4.8
version: \0.4.9
main: \build/Release/WebWorkerThreads.node
description: 'Lightweight Web Worker API implementation with native threads'
keywords: [ 'threads' 'web worker' 'a gogo' ]
Expand Down Expand Up @@ -36,6 +36,6 @@ scripts:
./deps/minifier/bin/minify kLoad_js 1 1 < src/load.js > src/load.js.c;
"""
dev-dependencies:
LiveScript: \1.1.x
LiveScript: \1.2.x
gypfile: true
engines: { node: '>= 0.8.0' }

0 comments on commit 5cae490

Please sign in to comment.