Skip to content

Commit

Permalink
* 0.4.3.
Browse files Browse the repository at this point in the history
  Also make the .ls files lsc-executable.
  • Loading branch information
audreyt committed Nov 17, 2012
1 parent b443c24 commit f65ca4c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
@@ -1,3 +1,7 @@
## 0.4.3

* Fix Linux compilation issue introduced in 0.4.1. (@dfellis)

## 0.4.2

### Global Worker API
Expand Down
1 change: 1 addition & 0 deletions examples/fiveThreads.ls 100644 → 100755
@@ -1,3 +1,4 @@
#!/usr/bin/env lsc
# Same as multiThreadEvented.ls, but with 5 workers

{ Worker } = require \webworker-threads
Expand Down
1 change: 1 addition & 0 deletions examples/multiThreadEvented.ls 100644 → 100755
@@ -1,3 +1,4 @@
#!/usr/bin/env lsc
# Minimal example for https://npmjs.org/package/webworker-threads

{ Worker } = require \webworker-threads
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "webworker-threads",
"version": "0.4.2",
"version": "0.4.3",
"main": "build/Release/WebWorkerThreads.node",
"description": "Lightweight Web Worker API implementation with native threads",
"keywords": [
Expand Down
3 changes: 2 additions & 1 deletion package.ls 100644 → 100755
@@ -1,5 +1,6 @@
#!/usr/bin/env lsc -cj
name: 'webworker-threads'
version: '0.4.2'
version: '0.4.3'
main: 'build/Release/WebWorkerThreads.node'
description: 'Lightweight Web Worker API implementation with native threads'
keywords: [ 'threads' 'web worker' 'a gogo' ]
Expand Down
1 change: 1 addition & 0 deletions test.ls 100644 → 100755
@@ -1,3 +1,4 @@
#!/usr/bin/env lsc
{ Worker } = require \webworker-threads
w = new Worker ->
# This also works, but less elegant:
Expand Down

0 comments on commit f65ca4c

Please sign in to comment.