Skip to content

Commit

Permalink
0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
xk committed Dec 22, 2016
1 parent 990ae20 commit 8d5b362
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ From source:
# or
node-waf configure build install
# Depending of what wersion of node you've got.
# THREADS_A_GOGO CURRENTLY (v0.1.8) RUNS ON NODES v0.5.1 TO v0.10.48
# THREADS_A_GOGO CURRENTLY (v0.1.9) RUNS ON NODES v0.5.1 TO v0.10.48

Basic functionality test:

Expand All @@ -39,7 +39,7 @@ Basic functionality test:
27.OK.WAITING FOR DESTROY CB
28.OK.29.DESTROY CB OK
END
THREADS_A_GOGO v0.1.8 BASIC FUNCTIONALITY TEST: OK, IT WORKS!
THREADS_A_GOGO v0.1.9 BASIC FUNCTIONALITY TEST: OK, IT WORKS!

To include the module in your project:

Expand Down Expand Up @@ -259,7 +259,7 @@ tagg= require('threads_a_gogo') -> tagg object

{ create: [Function],
createPool: [Function: createPool],
version: '0.1.8' }
version: '0.1.9' }

```
### .create()
Expand All @@ -281,7 +281,7 @@ thread= tagg.create() -> thread object
emit: [Function: emit],
destroy: [Function: destroy],
id: 0,
version: '0.1.8',
version: '0.1.9',
on: [Function: on],
once: [Function: once],
_on: {},
Expand Down Expand Up @@ -341,7 +341,7 @@ Inside every thread .create()d by threads_a_gogo, there's a global `thread` obje
thread (a global) ->

{ id: 0,
version: '0.1.8',
version: '0.1.9',
on: [Function: on],
once: [Function: once],load: [Function: load],
emit: [Function: emit],
Expand Down Expand Up @@ -429,7 +429,7 @@ pool= tagg.createPool( numbreOfThreads ) ->
emit: [Function: emit],
destroy: [Function: destroy],
id: 0,
version: '0.1.8',
version: '0.1.9',
on: [Function: on],
once: [Function: once],
_on: {},
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "threads_a_gogo",
"version": "0.1.8",
"version": "0.1.9",
"main": "build/Release/threads_a_gogo.node",
"description": "███ Simple and fast JavaScript threads for Node.js ███",
"description": "███ Simple and fast JavaScript threads for Node.js ███",
"keywords": [
"a gogo",
"ever",
Expand Down
2 changes: 1 addition & 1 deletion src/threads_a_gogo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ void Init (Handle<Object>);

//Globals BEGIN

const char* k_TAGG_VERSION= "0.1.8";
const char* k_TAGG_VERSION= "0.1.9";

static int DEBUG= 0;
static bool useLocker;
Expand Down
2 changes: 1 addition & 1 deletion test/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ function cb3 () {
assert.equal(this, global);
step('DESTROY CB OK\nEND\n');
process.stdout.write('THREADS_A_GOGO v'
+ process.versions.threads_a_gogo
+ tagg.version
+ ' BASIC FUNCTIONALITY TEST: OK, IT WORKS!\n');
}

0 comments on commit 8d5b362

Please sign in to comment.